Revert "test: run all tests together again"

This reverts commit e48df7b57272f1075175d5bcd44746ec6eb8ca02.
This commit is contained in:
Frank Schroeder 2017-06-02 07:52:21 +02:00
parent 4783af5733
commit eac0f59d78
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 2 additions and 1 deletions

View File

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