From af2417b8c69d0f45c7cc0ef566f722af584e982e Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Wed, 6 Jan 2021 14:19:28 +0100 Subject: [PATCH] Remove verbose test output --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b97b60c..8db18ba 100644 --- a/Makefile +++ b/Makefile @@ -16,10 +16,10 @@ require-version: if [ -z ${VERSION} ]; then echo "Need to set VERSION" && exit 1; fi; test-race: - go test -v -race ./... + go test -race ./... test-coverage: - go test -v -coverprofile=coverage.txt -covermode=atomic ./... + go test -coverprofile=coverage.txt -covermode=atomic ./... format: goimports -w $(shell find . -type f -name '*.go' -not -path "./vendor/*")