build: Do not swallow go test exit code

This commit is contained in:
Frank Schroeder 2017-04-27 11:17:58 -07:00
parent 9a2063bf6f
commit d60546e69d
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ cov:
test: dev test: dev
go test -tags "$(GOTAGS)" -i -run '^$$' ./... go test -tags "$(GOTAGS)" -i -run '^$$' ./...
go test -tags "$(GOTAGS)" -v $(GOFILES) | tee test.log 2>&1 ( set -o pipefail ; go test -tags "$(GOTAGS)" -v $(GOFILES) | tee test.log )
cover: cover:
go test $(GOFILES) --cover go test $(GOFILES) --cover