diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-11-25 06:17:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 06:17:31 (GMT) |
commit | d525d01e2794e7e736527eaa7ee309ca1252f5bd (patch) | |
tree | 30b56f1e36cd5cef44bbef78016ea76accee59d9 /Doc/library/test.rst | |
parent | 9eb3b35dd7d72ff73005abf20266a618215b9ae0 (diff) | |
download | cpython-d525d01e2794e7e736527eaa7ee309ca1252f5bd.zip cpython-d525d01e2794e7e736527eaa7ee309ca1252f5bd.tar.gz cpython-d525d01e2794e7e736527eaa7ee309ca1252f5bd.tar.bz2 |
gh-101100: Define `test.regrtest` module to fix references (#112381)
Define test.regrtest module to fix references
Diffstat (limited to 'Doc/library/test.rst')
-rw-r--r-- | Doc/library/test.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 7a8d386..6cbdc39 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -159,6 +159,9 @@ guidelines to be followed: Running tests using the command-line interface ---------------------------------------------- +.. module:: test.regrtest + :synopsis: Drives the regression test suite. + The :mod:`test` package can be run as a script to drive Python's regression test suite, thanks to the :option:`-m` option: :program:`python -m test`. Under the hood, it uses :mod:`test.regrtest`; the call :program:`python -m |