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