Skip to content

Commit

Permalink
Remove -v from go test.
Browse files Browse the repository at this point in the history
This caused unhelpful clutter in travis output.

Closes #506
  • Loading branch information
jcvernaleo committed Dec 7, 2016
1 parent 2c64824 commit b89abb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goclean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -ex
# Automatic checks
test -z "$(go fmt $(glide novendor) | tee /dev/stderr)"
test -z "$(go vet $(glide novendor) 2>&1 | tee /dev/stderr)"
env GORACE="halt_on_error=1" go test -v -race $(glide novendor)
env GORACE="halt_on_error=1" go test -race $(glide novendor)

# Run test coverage on each subdirectories and merge the coverage profile.

Expand Down

0 comments on commit b89abb7

Please sign in to comment.