Remove verbose test output

This commit is contained in:
Jannis Mattheis 2021-01-06 14:19:28 +01:00
parent 8a31fd1248
commit af2417b8c6
1 changed files with 2 additions and 2 deletions

View File

@ -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/*")