mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-46126: Restore 'descriptions' when running tests internally. (GH-32128)
This reverts commit a941e5927f
(GH-30194).
Automerge-Triggered-By: GH:jaraco
This commit is contained in:
parent
6e3eee5c11
commit
84acb5cad1
2 changed files with 2 additions and 5 deletions
|
@ -145,11 +145,7 @@ def get_test_runner_class(verbosity, buffer=False):
|
|||
return functools.partial(unittest.TextTestRunner,
|
||||
resultclass=RegressionTestResult,
|
||||
buffer=buffer,
|
||||
verbosity=verbosity,
|
||||
# disable descriptions so errors are
|
||||
# readily traceable. bpo-46126
|
||||
descriptions=False,
|
||||
)
|
||||
verbosity=verbosity)
|
||||
return functools.partial(QuietRegressionTestRunner, buffer=buffer)
|
||||
|
||||
def get_test_runner(stream, verbosity, capture_output=False):
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Restore 'descriptions' when running tests internally.
|
Loading…
Add table
Add a link
Reference in a new issue