remove verbose flag from go test

This commit is contained in:
Jesse Duffield 2019-04-07 13:08:54 +10:00
parent 60e33f5d8c
commit 878a15aff4

View file

@ -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