Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 84a5934

Browse files
committed
When the regression test is run in verbose mode, make the PyUNIT-based
tests a little noisier, providing more progress information.
1 parent db81e8d commit 84a5934

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def run(self, test):
112112
def run_unittest(testclass):
113113
"""Run tests from a unittest.TestCase-derived class."""
114114
if verbose:
115-
runner = unittest.TextTestRunner(sys.stdout, descriptions=0)
115+
runner = unittest.TextTestRunner(sys.stdout, verbosity=2)
116116
else:
117117
runner = BasicTestRunner()
118118

0 commit comments

Comments
 (0)