Issue #22812: Fix unittest discovery examples.

Patch from Pam McA'Nulty.
This commit is contained in:
Robert Collins 2015-08-24 12:15:49 +12:00
commit d949e5b057
3 changed files with 6 additions and 2 deletions

View File

@ -278,8 +278,8 @@ The :option:`-s`, :option:`-p`, and :option:`-t` options can be passed in
as positional arguments in that order. The following two command lines
are equivalent::
python -m unittest discover -s project_directory -p '*_test.py'
python -m unittest discover project_directory '*_test.py'
python -m unittest discover -s project_directory -p "*_test.py"
python -m unittest discover project_directory "*_test.py"
As well as being a path it is possible to pass a package name, for example
``myproject.subpackage.test``, as the start directory. The package name you

View File

@ -920,6 +920,7 @@ Daniel May
Madison May
Lucas Maystre
Arnaud Mazin
Pam McA'Nulty
Matt McClure
Jack McCracken
Rebecca McCreary

View File

@ -129,6 +129,9 @@ IDLE
Documentation
-------------
- Issue #22812: Fix unittest discovery examples.
Patch from Pam McA'Nulty.
- Issue #23725: Overhaul tempfile docs. Note deprecated status of mktemp.
Patch from Zbigniew Jędrzejewski-Szmek.