Browse Source

test: run all tests together again

Looks like I have eliminated the troublesome tests for now.
pull/3095/head
Frank Schroeder 8 years ago
parent
commit
e48df7b572
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
  1. 3
      GNUmakefile

3
GNUmakefile

@ -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

Loading…
Cancel
Save