test: run all tests together again

Looks like I have eliminated the troublesome tests for now.
This commit is contained in:
Frank Schroeder 2017-05-31 10:00:10 +02:00
parent cfe101ce49
commit 2f1947c862
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 1 additions and 2 deletions

View File

@ -48,8 +48,7 @@ cov:
test: dev
go test -tags "$(GOTAGS)" -i -run '^$$' ./...
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
go test -tags "$(GOTAGS)" -v ./... > 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