mirror of
https://github.com/status-im/consul.git
synced 2025-02-22 18:38:19 +00:00
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
aa92adcdd5
commit
205cbe5fc8
@ -48,7 +48,10 @@ cov:
|
||||
|
||||
test: dev
|
||||
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
|
||||
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
|
||||
|
Loading…
x
Reference in New Issue
Block a user