We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6780491 + 65f71c0 commit 6c8740eCopy full SHA for 6c8740e
.github/workflows/gotestsum.sh
@@ -56,8 +56,7 @@ done
56
57
packages=$(go list ./...)
58
for package in $packages; do
59
- cmd="stdbuf -oL gotestsum --format short-verbose --no-color=false -- \"$package\""
60
-
+ cmd="stdbuf -oL gotestsum --format short-verbose --packages=\"$package\" --rerun-fails=2 --no-color=false --"
61
if [ "$timeout" != "" ]; then
62
cmd="$cmd -timeout $timeout"
63
fi
@@ -79,7 +78,7 @@ for package in $packages; do
79
78
80
81
if [ "$test_state_scheme" != "" ]; then
82
- cmd="$cmd -- --test_state_scheme=$test_state_scheme"
+ cmd="$cmd -args -- --test_state_scheme=$test_state_scheme"
83
84
85
cmd="$cmd > >(stdbuf -oL tee -a full.log | grep -vE \"INFO|seal\")"
0 commit comments