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:
Jason R. Coombs 2022-04-03 15:33:28 -04:00 committed by GitHub
parent 6e3eee5c11
commit 84acb5cad1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View file

@ -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):

View file

@ -0,0 +1 @@
Restore 'descriptions' when running tests internally.