build: update makefile
* capture all output to test.log only and print only failures * always print output on travis * test github.com/hashicorp/consul/consul separately until we've found the interactions with the other packages during testing.
This commit is contained in:
parent
35757e6c09
commit
946428134e
|
@ -48,7 +48,10 @@ cov:
|
||||||
|
|
||||||
test: dev
|
test: dev
|
||||||
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
|
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
|
||||||
( set -o pipefail ; go test -tags "$(GOTAGS)" -v ./... 2>&1 | tee test.log )
|
go test -tags "$(GOTAGS)" -v $$(go list ./... | egrep -v '(consul/consul|vendor)') > test.log 2>&1 || true
|
||||||
|
go test -tags "$(GOTAGS)" -v github.com/hashicorp/consul/consul >> test.log 2>&1 || true
|
||||||
|
@if [ "$$TRAVIS" == "true" ] ; then cat test.log ; fi
|
||||||
|
@if grep -q 'FAIL:' test.log ; then grep 'FAIL:' test.log ; exit 1 ; else echo 'PASS' ; fi
|
||||||
|
|
||||||
test-race: dev
|
test-race: dev
|
||||||
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
|
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
|
||||||
|
|
Loading…
Reference in a new issue