summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2023-11-10 17:17:45 (GMT)
committerGitHub <noreply@github.com>2023-11-10 17:17:45 (GMT)
commit3932b0f7b1566374427daa8bc47203032015e350 (patch)
treed7a4c61cda7d382f3e480f56f2ad9edb8ff29d6c /Misc
parent0b06d2482d77e02c5d40e221f6046c9c355458b2 (diff)
downloadcpython-3932b0f7b1566374427daa8bc47203032015e350.zip
cpython-3932b0f7b1566374427daa8bc47203032015e350.tar.gz
cpython-3932b0f7b1566374427daa8bc47203032015e350.tar.bz2
gh-110722: Make `-m test -T -j` use sys.monitoring (GH-111710)
Now all results from worker processes are aggregated and displayed together as a summary at the end of a regrtest run. The traditional trace is left in place for use with sequential in-process test runs but now raises a warning that those numbers are not precise. `-T -j` requires `--with-pydebug` as it relies on `-Xpresite=`.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2023-11-03-18-59-13.gh-issue-110722.jvT1pb.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-11-03-18-59-13.gh-issue-110722.jvT1pb.rst b/Misc/NEWS.d/next/Tests/2023-11-03-18-59-13.gh-issue-110722.jvT1pb.rst
new file mode 100644
index 0000000..ad1ac53
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2023-11-03-18-59-13.gh-issue-110722.jvT1pb.rst
@@ -0,0 +1,2 @@
+Gathering line coverage of standard libraries within the regression test
+suite is now precise, as well as much faster. Patch by Łukasz Langa.