Skip to content

Commit 6c8740e

Browse files
authored
Merge branch 'master' into use-cloudflare-bn256
2 parents 6780491 + 65f71c0 commit 6c8740e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: .github/workflows/gotestsum.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ done
5656

5757
packages=$(go list ./...)
5858
for package in $packages; do
59-
cmd="stdbuf -oL gotestsum --format short-verbose --no-color=false -- \"$package\""
60-
59+
cmd="stdbuf -oL gotestsum --format short-verbose --packages=\"$package\" --rerun-fails=2 --no-color=false --"
6160
if [ "$timeout" != "" ]; then
6261
cmd="$cmd -timeout $timeout"
6362
fi
@@ -79,7 +78,7 @@ for package in $packages; do
7978
fi
8079

8180
if [ "$test_state_scheme" != "" ]; then
82-
cmd="$cmd -- --test_state_scheme=$test_state_scheme"
81+
cmd="$cmd -args -- --test_state_scheme=$test_state_scheme"
8382
fi
8483

8584
cmd="$cmd > >(stdbuf -oL tee -a full.log | grep -vE \"INFO|seal\")"

0 commit comments

Comments
 (0)