Separate cover target for tests

This commit is contained in:
Chavez 2014-12-05 18:47:23 -08:00
parent d760c8e6ce
commit 89e60343f0
1 changed files with 6 additions and 2 deletions

View File

@ -16,10 +16,14 @@ deps:
test: deps
./scripts/verify_no_uuid.sh
go list ./... | xargs -n1 go test --cover
go list ./... | xargs -n1 go test
integ:
go list ./... | INTEG_TESTS=yes xargs -n1 go test --cover
go list ./... | INTEG_TESTS=yes xargs -n1 go test
cover: deps
./scripts/verify_no_uuid.sh
go list ./... | xargs -n1 go test --cover
format: deps
@echo "--> Running go fmt"