Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f1cdb608
Commit
f1cdb608
authored
Apr 09, 2012
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reflow paragraph (not that it helped much).
parent
78fc25c7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
Doc/library/test.rst
Doc/library/test.rst
+9
-10
No files found.
Doc/library/test.rst
View file @
f1cdb608
...
@@ -160,16 +160,15 @@ Running tests using the command-line interface
...
@@ -160,16 +160,15 @@ Running tests using the command-line interface
The :mod:`test` package can be run as a script to drive Python's regression
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
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
the hood, it uses :mod:`test.regrtest`; the call :program:`python -m
test.regrtest` used in previous Python versions still works).
test.regrtest` used in previous Python versions still works). Running the
Running the script by itself automatically starts running all regression
script by itself automatically starts running all regression tests in the
tests in the :mod:`test` package. It does this by finding all modules in the
:mod:`test` package. It does this by finding all modules in the package whose
package whose name starts with ``test_``, importing them, and executing the
name starts with ``test_``, importing them, and executing the function
function :func:`test_main` if present or loading the tests via
:func:`test_main` if present or loading the tests via
unittest.TestLoader.loadTestsFromModule if ``test_main`` does not exist.
unittest.TestLoader.loadTestsFromModule if ``test_main`` does not exist. The
The names of tests to execute may also
names of tests to execute may also be passed to the script. Specifying a single
be passed to the script. Specifying a single regression test (:program:`python
regression test (:program:`python -m test test_spam`) will minimize output and
-m test test_spam`) will minimize output and only print
only print whether the test passed or failed.
whether the test passed or failed.
Running :mod:`test` directly allows what resources are available for
Running :mod:`test` directly allows what resources are available for
tests to use to be set. You do this by using the ``-u`` command-line
tests to use to be set. You do this by using the ``-u`` command-line
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment