diff --git a/Makefile b/Makefile index 2b4ccd161..3d9316e18 100644 --- a/Makefile +++ b/Makefile @@ -313,6 +313,7 @@ test-unit: UNIT_TEST_PACKAGES = $(shell go list ./... | \ grep -v /transactions/fake ) test-unit: ##@tests Run unit and integration tests for file in $(UNIT_TEST_PACKAGES); do \ + set -e; \ go test -tags '$(BUILD_TAGS)' -timeout 20m -v -failfast $$file $(gotest_extraflags); \ done