Remove -v from go test.

This caused unhelpful clutter in travis output.

Closes #106
This commit is contained in:
John C. Vernaleo 2016-12-07 10:14:06 -05:00
parent 1b800b69cf
commit 7903290fd9

View file

@ -22,7 +22,7 @@ test -z "$(gometalinter --disable-all \
--enable=unconvert \
--enable=goimports \
--deadline=45s ./... | tee /dev/stderr)"
env GORACE="halt_on_error=1" go test -v -race ./...
env GORACE="halt_on_error=1" go test -race ./...
# Run test coverage on each subdirectories and merge the coverage profile.