summaryrefslogtreecommitdiffstats
path: root/test.sh
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-04-07 13:08:54 +1000
committerJesse Duffield <jessedduffield@gmail.com>2019-04-07 13:13:40 +1000
commit878a15aff40639eb69cca19876da74a1ae8bbcc4 (patch)
tree4898e1c64768213a82ee2d4c3334685d107b5d2e /test.sh
parent60e33f5d8c0751ddb75dfeca2fa0c92b85beed94 (diff)
remove verbose flag from go test
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.sh b/test.sh
index 429c4c381..0a412bac0 100755
--- a/test.sh
+++ b/test.sh
@@ -10,7 +10,7 @@ fi
for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
if ls $d/*.go &> /dev/null; then
- args="-v -race -coverprofile=profile.out -covermode=atomic $d"
+ args="-race -coverprofile=profile.out -covermode=atomic $d"
if [ "$use_go_test" == true ]; then
gotest $args
else