Fix integration tests script

pull/541/head
Martin Boehm 2020-06-30 15:06:11 +02:00 committed by sidhujag
parent 4e26ee5dc9
commit fca135cf7d
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ test: prepare-sources generate-data
cd $(BLOCKBOOK_SRC) && go test -tags unittest `go list ./... | grep -vP '^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 '^blockbook/contrib'` $(ARGS)