Skip to content

Commit 9e6da60

Browse files
committed
CI: remove reruns on all failures.
This is covering up real bugs; we need to fix CI instead. From https://pypi.org/project/pytest-rerunfailures/#re-run-all-failures: ``` To re-run all test failures, use the --reruns command line option with the maximum number of times you’d like the tests to run: $ pytest --reruns 5 ``` Signed-off-by: Rusty Russell <[email protected]>
1 parent be02112 commit 9e6da60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
RUST_PROFILE: release
1717
SLOW_MACHINE: 1
1818
CI_SERVER_URL: "http://35.239.136.52:3170"
19-
GLOBAL_PYTEST_OPTS: "--reruns=10 -vvv"
19+
GLOBAL_PYTEST_OPTS: "-vvv"
2020

2121
jobs:
2222
prebuild:
@@ -431,7 +431,7 @@ jobs:
431431
env:
432432
RUST_PROFILE: release # Has to match the one in the compile step
433433
CFG: compile-gcc
434-
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800 --durations=10 --reruns=10
434+
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800 --durations=10
435435
needs:
436436
- compile
437437
strategy:
@@ -502,7 +502,7 @@ jobs:
502502
RUST_PROFILE: release
503503
SLOW_MACHINE: 1
504504
TEST_DEBUG: 1
505-
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800 --durations=10 --reruns=10
505+
PYTEST_OPTS: --test-group-random-seed=42 --timeout=1800 --durations=10
506506
needs:
507507
- compile
508508
strategy:

0 commit comments

Comments
 (0)