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 3fc714b9b6
commit 05b60da07c

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}