From 2ad153f95382d12b76ee7ac704c7e9865f61d104 Mon Sep 17 00:00:00 2001 From: lumtis Date: Wed, 6 Mar 2024 10:32:47 +0100 Subject: [PATCH] remove verbose flag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0be2b3ccc7..b888d22629 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ test-hsm: # Generate the test coverage # "|| exit 1" is used to return a non-zero exit code if the tests fail test-coverage: - @go test ${TEST_BUILD_FLAGS} -v -coverprofile coverage.out ${TEST_DIR} || exit 1 + @go test ${TEST_BUILD_FLAGS} -coverprofile coverage.out ${TEST_DIR} || exit 1 coverage-report: test-coverage @go tool cover -html=coverage.out -o coverage.html