diff options
author | Fred Drake <fdrake@acm.org> | 2001-03-23 04:21:17 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-03-23 04:21:17 (GMT) |
commit | 84a5934f8a09b670a8554a9e84f59006bc4c087c (patch) | |
tree | bdc63f335135b22ec1d95af530eadf8837abafc3 | |
parent | db81e8ddf8953359e8c2ed9569dd2e774d78ae95 (diff) | |
download | cpython-84a5934f8a09b670a8554a9e84f59006bc4c087c.zip cpython-84a5934f8a09b670a8554a9e84f59006bc4c087c.tar.gz cpython-84a5934f8a09b670a8554a9e84f59006bc4c087c.tar.bz2 |
When the regression test is run in verbose mode, make the PyUNIT-based
tests a little noisier, providing more progress information.
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 426f7aa..aa8eaa6 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -112,7 +112,7 @@ class BasicTestRunner: def run_unittest(testclass): """Run tests from a unittest.TestCase-derived class.""" if verbose: - runner = unittest.TextTestRunner(sys.stdout, descriptions=0) + runner = unittest.TextTestRunner(sys.stdout, verbosity=2) else: runner = BasicTestRunner() |