Merge pull request #7069 from bluetech/faulthandler-doc-windows

Remove note saying faulthandler_timeout is not available on Windows
This commit is contained in:
Ran Benita 2020-04-14 10:24:28 +03:00 committed by GitHub
commit 9ddf38369d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -13,8 +13,7 @@ fault_handler_stderr_key = StoreKey[TextIO]()
def pytest_addoption(parser):
help = (
"Dump the traceback of all threads if a test takes "
"more than TIMEOUT seconds to finish.\n"
"Not available on Windows."
"more than TIMEOUT seconds to finish."
)
parser.addini("faulthandler_timeout", help, default=0.0)