diff --git a/Makefile b/Makefile index 247ae1173..5fa414d32 100644 --- a/Makefile +++ b/Makefile @@ -9,14 +9,15 @@ submodules: ## Download the git submodules test: unit-test e2e-test ## Execute all tests .PHONY: unit-test -unit-test:## Execute unit tests +unit-test: ## Execute unit tests @echo "Running unit tests" @go test ./... .PHONY: e2e-test e2e-test: ## Execute e2e tests @echo "Running end-to-end tests" - @go test -count=1 ./test --tags=endtoendtests + # @go test -count=1 ./test --tags=endtoendtests + @go test -count=1 ./test .PHONY: lint lint: ## Run the linter @@ -91,3 +92,4 @@ docker-clean: ## Remove the containers and volumes from previous compose run .PHONY: help help: ## Show help for each of the Makefile recipes @grep "##" $(MAKEFILE_LIST) | grep -v grep | sed -e 's/:.*##\(.*\)/:\n\t\1\n/' +