From 83616bce8398f38e4f07f0b1f04fe2cba0a261bb Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Tue, 30 Jun 2020 15:06:11 +0200 Subject: [PATCH] Fix integration tests script --- build/docker/bin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/docker/bin/Makefile b/build/docker/bin/Makefile index 242a254a..bbae71dc 100644 --- a/build/docker/bin/Makefile +++ b/build/docker/bin/Makefile @@ -28,7 +28,7 @@ test: prepare-sources generate-data cd $(BLOCKBOOK_SRC) && go test -tags unittest `go list ./... | grep -vP '^github.com/trezor/blockbook/(contrib|tests)'` $(ARGS) test-integration: prepare-sources generate-data - cd $(BLOCKBOOK_SRC) && go test -tags integration `go list blockbook/tests/...` $(ARGS) + cd $(BLOCKBOOK_SRC) && go test -tags integration `go list github.com/trezor/blockbook/tests/...` $(ARGS) test-all: prepare-sources generate-data cd $(BLOCKBOOK_SRC) && go test -tags 'unittest integration' `go list ./... | grep -v '^github.com/trezor/blockbook/contrib'` $(ARGS)