bpo-30078: Add an example of passing a path to unittest (GH-1178)

(cherry picked from commit f7e62cf8ad)
This commit is contained in:
Berker Peksag 2017-04-20 07:36:57 +03:00 committed by GitHub
parent 5fb4bf91e7
commit 596e714d79

View file

@ -14,6 +14,7 @@ Examples:
%(prog)s test_module - run tests from test_module %(prog)s test_module - run tests from test_module
%(prog)s module.TestClass - run tests from module.TestClass %(prog)s module.TestClass - run tests from module.TestClass
%(prog)s module.Class.test_method - run specified test method %(prog)s module.Class.test_method - run specified test method
%(prog)s path/to/test_file.py - run tests from test_file.py
""" """
MODULE_EXAMPLES = """\ MODULE_EXAMPLES = """\