diff --git a/Makefile b/Makefile index 0dca976e12..d51fe7cc56 100644 --- a/Makefile +++ b/Makefile @@ -101,6 +101,7 @@ clean: ## clean up binaries coverage: ## generate coverprofiles from the tests @echo "🐳 $@" @( for pkg in ${PACKAGES}; do \ + go test -i -tags "${DOCKER_BUILDTAGS}" -test.short -coverprofile="../../../$$pkg/coverage.txt" -covermode=count $$pkg || exit; \ go test -tags "${DOCKER_BUILDTAGS}" -test.short -coverprofile="../../../$$pkg/coverage.txt" -covermode=count $$pkg || exit; \ done )