diff --git a/Makefile b/Makefile index 815522b30..ee1bc8e57 100644 --- a/Makefile +++ b/Makefile @@ -107,11 +107,11 @@ test-race: $(GOTEST) -tags slow -race -timeout 60m -v ./pkg/... ./internal/... test-codecov: $(info Running all Go unit tests with code coverage report for codecov...) - go test -parallel 1 -count 1 -cpu 1 -failfast -tags slow -timeout 30m -coverprofile coverage.txt -covermode atomic -v ./pkg/... ./internal/... + go test -parallel 1 -count 1 -cpu 1 -failfast -tags slow -timeout 30m -coverprofile coverage.txt -covermode atomic ./pkg/... ./internal/... scripts/codecov.sh test-coverage: $(info Running all Go unit tests with code coverage report...) - go test -parallel 1 -count 1 -cpu 1 -failfast -tags slow -timeout 30m -coverprofile coverage.txt -covermode atomic -v ./pkg/... ./internal/... + go test -parallel 1 -count 1 -cpu 1 -failfast -tags slow -timeout 30m -coverprofile coverage.txt -covermode atomic ./pkg/... ./internal/... go tool cover -html=coverage.txt -o coverage.html clean: rm -f $(BINARY_NAME)