File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ qualified class or method names.
107107
108108You can run tests with more detail (higher verbosity) by passing in the -v flag::
109109
110- python-m unittest -v test_module
110+ python -m unittest -v test_module
111111
112112For a list of all the command line options::
113113
@@ -149,8 +149,8 @@ The ``discover`` sub-command has the following options:
149149The -s, -p, & -t options can be passsed in as positional arguments. The
150150following two command lines are equivalent::
151151
152- python -m unittest -s project_directory -p '*_test.py'
153- python -m unittest project_directory '*_test.py'
152+ python -m unittest discover -s project_directory -p '*_test.py'
153+ python -m unittest discover project_directory '*_test.py'
154154
155155Test modules and packages can customize test loading and discovery by through
156156the `load_tests protocol `_.
@@ -1436,7 +1436,7 @@ Loading and running tests
14361436
14371437 .. method :: stopTestRun(test)
14381438
1439- Called once before any tests are executed.
1439+ Called once after all tests are executed.
14401440
14411441 .. versionadded :: 2.7
14421442
You can’t perform that action at this time.
0 commit comments