diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-02 17:26:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 17:26:20 (GMT) |
commit | f5ddbeeab7df58d42b870061df13de6364b47d13 (patch) | |
tree | 243f7b511a4a26a9c44c944b46de3896d9d046b9 /Misc/NEWS.d | |
parent | d4e534cbb35678c82b3a1276826af55d7bfc23b6 (diff) | |
download | cpython-f5ddbeeab7df58d42b870061df13de6364b47d13.zip cpython-f5ddbeeab7df58d42b870061df13de6364b47d13.tar.gz cpython-f5ddbeeab7df58d42b870061df13de6364b47d13.tar.bz2 |
gh-108822: Add Changelog entry for regrtest statistics (#108821)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2023-09-02-19-06-52.gh-issue-108822.arTbBI.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-09-02-19-06-52.gh-issue-108822.arTbBI.rst b/Misc/NEWS.d/next/Tests/2023-09-02-19-06-52.gh-issue-108822.arTbBI.rst new file mode 100644 index 0000000..e1c6df2 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2023-09-02-19-06-52.gh-issue-108822.arTbBI.rst @@ -0,0 +1,4 @@ +``regrtest`` now computes statistics on all tests: successes, failures and +skipped. ``test_netrc``, ``test_pep646_syntax`` and ``test_xml_etree`` now +return results in their ``test_main()`` function. Patch by Victor Stinner +and Alex Waygood. |