From 878a15aff40639eb69cca19876da74a1ae8bbcc4 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 7 Apr 2019 13:08:54 +1000 Subject: [PATCH] remove verbose flag from go test --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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