From d405c962d5e807c430fe6b90c51a5e47bac23f14 Mon Sep 17 00:00:00 2001 From: Ilya Markin Date: Fri, 23 Aug 2019 11:49:08 +0300 Subject: [PATCH] NOISSUE: move light integration tests to slow tag --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 59c2866723..1fbfc7458a 100644 --- a/Makefile +++ b/Makefile @@ -154,7 +154,7 @@ test_func: functest ## alias for functest .PHONY: test_slow test_slow: ## run tests with slowtest tag - CGO_ENABLED=1 go test $(TEST_ARGS) -tags slowtest ./logicrunner/... ./server/internal/... ./ledger/light/integration + CGO_ENABLED=1 go test $(TEST_ARGS) -tags slowtest ./logicrunner/... ./server/internal/... ./ledger/light/integration/... .PHONY: test test: test_unit ## alias for test_unit @@ -187,7 +187,7 @@ ci_test_unit: ## run unit tests 10 times and -race flag, redirects json output t .PHONY: ci_test_slow ci_test_slow: ## run slow tests just once, redirects json output to file (CI) GOMAXPROCS=$(CI_GOMAXPROCS) CGO_ENABLED=1 \ - go test $(CI_TEST_ARGS) $(TEST_ARGS) -json -v -tags slowtest ./logicrunner/... ./server/internal/... -count 1 | tee -a ci_test_unit.json + go test $(CI_TEST_ARGS) $(TEST_ARGS) -json -v -tags slowtest ./logicrunner/... ./server/internal/... ./ledger/light/integration/... -count 1 | tee -a ci_test_unit.json .PHONY: ci_test_func ci_test_func: ## run functest 3 times, redirects json output to file (CI)