summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-06-11 11:22:07 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-06-11 11:23:56 +1000
commitd0748c6c28920789fc715c2f141047d4c690de8d (patch)
tree51766d99bee0d45084393c1053b54379429ef7dc
parentb1e4968d0b1c39c46c084264d91f637a3cde4a7d (diff)
verbose tests
-rwxr-xr-xtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.sh b/test.sh
index 0a8d91e85..d95a9b76e 100755
--- a/test.sh
+++ b/test.sh
@@ -12,7 +12,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="-race -coverprofile=profile.out -covermode=atomic $d"
+ args="-race -v -coverprofile=profile.out -covermode=atomic $d"
if [ "$use_go_test" == true ]; then
gotest $args
else