Remove verbose test output
This commit is contained in:
parent
8a31fd1248
commit
af2417b8c6
4
Makefile
4
Makefile
|
|
@ -16,10 +16,10 @@ require-version:
|
||||||
if [ -z ${VERSION} ]; then echo "Need to set VERSION" && exit 1; fi;
|
if [ -z ${VERSION} ]; then echo "Need to set VERSION" && exit 1; fi;
|
||||||
|
|
||||||
test-race:
|
test-race:
|
||||||
go test -v -race ./...
|
go test -race ./...
|
||||||
|
|
||||||
test-coverage:
|
test-coverage:
|
||||||
go test -v -coverprofile=coverage.txt -covermode=atomic ./...
|
go test -coverprofile=coverage.txt -covermode=atomic ./...
|
||||||
|
|
||||||
format:
|
format:
|
||||||
goimports -w $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
goimports -w $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue