Issue #17203: add long option names to unittest discovery docs.

This commit is contained in:
Chris Jerdonek 2013-02-21 19:00:06 -08:00
commit 8c0bbfd101
2 changed files with 5 additions and 3 deletions

View File

@ -263,15 +263,15 @@ The ``discover`` sub-command has the following options:
Verbose output Verbose output
.. cmdoption:: -s directory .. cmdoption:: -s, --start-directory directory
Directory to start discovery (``.`` default) Directory to start discovery (``.`` default)
.. cmdoption:: -p pattern .. cmdoption:: -p, --pattern pattern
Pattern to match test files (``test*.py`` default) Pattern to match test files (``test*.py`` default)
.. cmdoption:: -t directory .. cmdoption:: -t, --top-level-directory directory
Top level directory of project (defaults to start directory) Top level directory of project (defaults to start directory)

View File

@ -748,6 +748,8 @@ Tools/Demos
Documentation Documentation
------------- -------------
- Issue #17203: add long option names to unittest discovery docs.
- Issue #13094: add "Why do lambdas defined in a loop with different values - Issue #13094: add "Why do lambdas defined in a loop with different values
all return the same result?" programming FAQ. all return the same result?" programming FAQ.