@@ -212,7 +212,7 @@ jobs:
212
212
packages=`go list ./...`
213
213
for package in $packages; do
214
214
echo running tests for $package
215
- if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --rerun-fails=1 -- no-color=false -- ./... -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -timeout 35m -skip "$skip_tests" -tags=cionly > >(stdbuf -oL tee full.log | grep -vE "INFO|seal"); then
215
+ if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --no-color=false -- ./... -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -timeout 35m -skip "$skip_tests" -tags=cionly > >(stdbuf -oL tee full.log | grep -vE "INFO|seal"); then
216
216
exit 1
217
217
fi
218
218
done
@@ -227,7 +227,7 @@ jobs:
227
227
packages=`go list ./...`
228
228
for package in $packages; do
229
229
echo running tests for $package
230
- if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --rerun-fails=1 -- no-color=false -- ./... -race -skip "$skip_tests" -timeout=40m > >(stdbuf -oL tee full.log | grep -vE "INFO|seal"); then
230
+ if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --no-color=false -- ./... -race -skip "$skip_tests" -timeout=40m > >(stdbuf -oL tee full.log | grep -vE "INFO|seal"); then
231
231
exit 1
232
232
fi
233
233
done
@@ -244,7 +244,7 @@ jobs:
244
244
packages=`go list ./...`
245
245
for package in $packages; do
246
246
echo running tests for $package
247
- if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --rerun-fails=2 -- no-color=false -- -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -tags=challengetest -run=TestChallenge -skip "$skip_tests" > >(stdbuf -oL tee -a full.log | grep -vE "INFO|seal"); then
247
+ if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --no-color=false -- -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -tags=challengetest -run=TestChallenge -skip "$skip_tests" > >(stdbuf -oL tee -a full.log | grep -vE "INFO|seal"); then
248
248
exit 1
249
249
fi
250
250
done
@@ -257,7 +257,7 @@ jobs:
257
257
packages=`go list ./...`
258
258
for package in $packages; do
259
259
echo running tests for $package
260
- if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --rerun-fails=2 -- no-color=false -- -timeout 60m -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -tags=stylustest -run="TestProgramArbitrator" -skip "$skip_tests" > >(stdbuf -oL tee -a full.log | grep -vE "INFO|seal"); then
260
+ if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --no-color=false -- -timeout 60m -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -tags=stylustest -run="TestProgramArbitrator" -skip "$skip_tests" > >(stdbuf -oL tee -a full.log | grep -vE "INFO|seal"); then
261
261
exit 1
262
262
fi
263
263
done
@@ -270,7 +270,7 @@ jobs:
270
270
packages=`go list ./...`
271
271
for package in $packages; do
272
272
echo running tests for $package
273
- if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --rerun-fails=2 -- no-color=false -- -timeout 60m -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -tags=stylustest -run="TestProgramLong" -skip "$skip_tests" > >(stdbuf -oL tee -a full.log | grep -vE "INFO|seal"); then
273
+ if ! stdbuf -oL gotestsum --format short-verbose --packages="$package" --no-color=false -- -timeout 60m -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/... -tags=stylustest -run="TestProgramLong" -skip "$skip_tests" > >(stdbuf -oL tee -a full.log | grep -vE "INFO|seal"); then
274
274
exit 1
275
275
fi
276
276
done
0 commit comments