Skip to content

Commit

Permalink
regrtest: --fast-ci/slow-ci no longer imply --rerun-fail (python#110849)
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner authored Oct 14, 2023
1 parent b2ab210 commit ce298a1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion Lib/test/libregrtest/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,6 @@ def _parse_args(args, **kwargs):
ns.use_mp = 0
ns.randomize = True
ns.fail_env_changed = True
ns.fail_rerun = True
if ns.python is None:
ns.rerun = True
ns.print_slow = True
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_regrtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,6 @@ def check_ci_mode(self, args, use_resources, rerun=True):
self.assertTrue(regrtest.randomize)
self.assertIsInstance(regrtest.random_seed, int)
self.assertTrue(regrtest.fail_env_changed)
self.assertTrue(regrtest.fail_rerun)
self.assertTrue(regrtest.print_slowest)
self.assertTrue(regrtest.output_on_failure)
self.assertEqual(sorted(regrtest.use_resources), sorted(use_resources))
Expand Down

0 comments on commit ce298a1

Please sign in to comment.