From e982b9798c8c2e530a3798426778d983a18392a3 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Tue, 2 Apr 2024 15:49:57 +0200 Subject: [PATCH] Remove verbose from tests Signed-off-by: Evan Lezar --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd3e3a5e..e694f6ce 100644 --- a/Makefile +++ b/Makefile @@ -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