Merge pull request #436 from elezar/remove-verbose-from-tests

Remove verbose from tests
This commit is contained in:
Evan Lezar
2024-04-02 17:46:33 +02:00
committed by GitHub

View File

@@ -103,7 +103,7 @@ licenses:
COVERAGE_FILE := coverage.out
test: build cmds
go test -v -coverprofile=$(COVERAGE_FILE) $(MODULE)/...
go test -coverprofile=$(COVERAGE_FILE) $(MODULE)/...
coverage: test
cat $(COVERAGE_FILE) | grep -v "_mock.go" > $(COVERAGE_FILE).no-mocks