Include the test coverage report in the output

Inspired by: Nomad project
This commit is contained in:
Sean Chittenden 2016-05-07 13:04:28 -07:00
parent 888bfa71c7
commit 0ba86087eb
1 changed files with 1 additions and 1 deletions

View File

@ -12,4 +12,4 @@ go build -o $TEMPDIR/consul || exit 1
# Run the tests
echo "--> Running tests"
go list ./... | grep -v ^github.com/hashicorp/consul/vendor/ | PATH=$TEMPDIR:$PATH xargs -n1 go test ${GOTEST_FLAGS:-}
go list ./... | grep -v '^github.com/hashicorp/consul/vendor/' | PATH=$TEMPDIR:$PATH xargs -n1 go test ${GOTEST_FLAGS:--cover -timeout=360s}