summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-14 00:25:38 (GMT)
committerGitHub <noreply@github.com>2023-10-14 00:25:38 (GMT)
commitce298a1c1566467e7fd459c8f61478a26f42833e (patch)
tree2bb5d0c55b91a6f5e3e8ae9ec0302276daa60b10 /Lib/test
parentb2ab210aaefb3b0e39f28e7946b7a531d7b2ab17 (diff)
downloadcpython-ce298a1c1566467e7fd459c8f61478a26f42833e.zip
cpython-ce298a1c1566467e7fd459c8f61478a26f42833e.tar.gz
cpython-ce298a1c1566467e7fd459c8f61478a26f42833e.tar.bz2
regrtest: --fast-ci/slow-ci no longer imply --rerun-fail (#110849)
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/libregrtest/cmdline.py1
-rw-r--r--Lib/test/test_regrtest.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/libregrtest/cmdline.py b/Lib/test/libregrtest/cmdline.py
index dd4cd33..5a01f1d 100644
--- a/Lib/test/libregrtest/cmdline.py
+++ b/Lib/test/libregrtest/cmdline.py
@@ -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
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py
index cfe8b57..26c0a67 100644
--- a/Lib/test/test_regrtest.py
+++ b/Lib/test/test_regrtest.py
@@ -394,7 +394,6 @@ class ParseArgsTestCase(unittest.TestCase):
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))