Remove -v from go test.
This caused unhelpful clutter in travis output. Closes #89
This commit is contained in:
parent
2d8020d311
commit
96e858f48e
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ test -z "$(gometalinter --disable-all \
|
|||
--enable=vet \
|
||||
--enable=unconvert \
|
||||
--deadline=120s ./... | grep -v 'ExampleNew' 2>&1 | 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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue