summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2021-07-22 18:25:58 (GMT)
committerGitHub <noreply@github.com>2021-07-22 18:25:58 (GMT)
commitf1afef5e0d93d66fbf3c9aaeab8b3b8da9617583 (patch)
tree6f25fa40468d521378c9fa615360f2a6a2b593be /Misc
parent50ffbe3dafcae7826d114df61d56c7ac45a6358c (diff)
downloadcpython-f1afef5e0d93d66fbf3c9aaeab8b3b8da9617583.zip
cpython-f1afef5e0d93d66fbf3c9aaeab8b3b8da9617583.tar.gz
cpython-f1afef5e0d93d66fbf3c9aaeab8b3b8da9617583.tar.bz2
bpo-44708: Only re-run test methods that match names of previously failing test methods (GH-27287)
* Move to a static argparse.Namespace subclass * Roughly annotate runtest.py * Refactor libregrtest to use lossless test result objects * Only re-run test methods that match names of previously failing test methods * Adopt tests to cover test method name matching Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2021-07-22-16-38-39.bpo-44708.SYNaac.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-07-22-16-38-39.bpo-44708.SYNaac.rst b/Misc/NEWS.d/next/Tests/2021-07-22-16-38-39.bpo-44708.SYNaac.rst
new file mode 100644
index 0000000..8b26c4d
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2021-07-22-16-38-39.bpo-44708.SYNaac.rst
@@ -0,0 +1,2 @@
+Regression tests, when run with -w, are now re-running only the affected
+test methods instead of re-running the entire test file.