*: make makefile less verbose

This commit is contained in:
Eric Chiang 2016-08-01 23:02:23 -07:00
parent f8af792a52
commit c7af2c4885
1 changed files with 2 additions and 2 deletions

View File

@ -30,10 +30,10 @@ bin/pokectl: FORCE
@go install $(REPO_PATH)/cmd/pokectl
test:
@go test -v $(shell go list ./... | grep -v '/vendor/')
@go test $(shell go list ./... | grep -v '/vendor/')
testrace:
@go test -v --race $(shell go list ./... | grep -v '/vendor/')
@go test --race $(shell go list ./... | grep -v '/vendor/')
vet:
@go vet $(shell go list ./... | grep -v '/vendor/')