From 2adef2e8f88822ce660881686cdcacd807f3f427 Mon Sep 17 00:00:00 2001 From: Zach Ramsay Date: Fri, 5 Jan 2018 00:02:58 +0000 Subject: [PATCH] less bash in tests --- Makefile | 10 ++++++++-- tests/test_cover.sh | 0 2 files changed, 8 insertions(+), 2 deletions(-) mode change 100644 => 100755 tests/test_cover.sh diff --git a/Makefile b/Makefile index 81dceb78..f44dc5e2 100644 --- a/Makefile +++ b/Makefile @@ -82,11 +82,17 @@ test_race: @echo "==> Running go test --race" @go test -v -race $(PACKAGES) +### three tests tested by Jenkins test_cover: @ bash tests/test_cover.sh -test_integrations: - @bash test.sh +test_app: + # test the counter using a go test script + @ bash tests/test_app/test.sh + +test_cli: + # test the cli against the examples in the tutorial at tendermint.com + @ bash tests/test_cli/test.sh fmt: @ go fmt ./... diff --git a/tests/test_cover.sh b/tests/test_cover.sh old mode 100644 new mode 100755