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
d43b63fe
Commit
d43b63fe
authored
Apr 03, 2010
by
Michael Foord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding -b command line option to the unittest usage message.
parent
856a3be7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
Lib/unittest/main.py
Lib/unittest/main.py
+8
-6
No files found.
Lib/unittest/main.py
View file @
d43b63fe
...
...
@@ -9,9 +9,9 @@ from .signals import installHandler
__unittest
=
True
FAILFAST
=
" -f, --failfast Stop on first failure
\
n
"
CATCHBREAK
=
" -c, --catch Catch control-C and display result
s
\
n
"
FAILFAST
=
" -f, --failfast Stop on first failure
\
n
"
CATCHBREAK
=
" -c, --catch Catch control-C and display results
\
n
"
BUFFEROUTPUT
=
" -b, --buffer Buffer stdout and stderr during test run
s
\
n
"
USAGE_AS_MAIN
=
"""
\
Usage: %(progName)s [options] [tests]
...
...
@@ -20,7 +20,7 @@ Options:
-h, --help Show this message
-v, --verbose Verbose output
-q, --quiet Minimal output
%(failfast)s%(catchbreak)s
%(failfast)s%(catchbreak)s
%(buffer)s
Examples:
%(progName)s test_module - run tests from test_module
%(progName)s test_module.TestClass - run tests from
...
...
@@ -34,7 +34,7 @@ Alternative Usage: %(progName)s discover [options]
Options:
-v, --verbose Verbose output
%(failfast)s%(catchbreak)s -s directory Directory to start discovery ('.' default)
%(failfast)s%(catchbreak)s
%(buffer)s
-s directory Directory to start discovery ('.' default)
-p pattern Pattern to match test files ('test*.py' default)
-t directory Top level directory of project (default to
start directory)
...
...
@@ -50,7 +50,7 @@ Options:
-h, --help Show this message
-v, --verbose Verbose output
-q, --quiet Minimal output
%(failfast)s%(catchbreak)s
%(failfast)s%(catchbreak)s
%(buffer)s
Examples:
%(progName)s - run default set of tests
%(progName)s MyTestSuite - run suite 'MyTestSuite'
...
...
@@ -103,6 +103,8 @@ class TestProgram(object):
usage
[
'failfast'
]
=
FAILFAST
if
self
.
catchbreak
!=
False
:
usage
[
'catchbreak'
]
=
CATCHBREAK
if
self
.
buffer
!=
False
:
usage
[
'buffer'
]
=
BUFFEROUTPUT
print
self
.
USAGE
%
usage
sys
.
exit
(
2
)
...
...
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