Increase test_faulthandler.py::test_timeout sleep duration on CI

This might help fix some flakiness.
This commit is contained in:
Ran Benita 2020-04-05 18:22:01 +03:00
parent cb06bc7d6e
commit 7da3e3aaad
1 changed files with 1 additions and 3 deletions

View File

@ -58,7 +58,7 @@ def test_timeout(testdir, enabled):
"""
import os, time
def test_timeout():
time.sleep(1 if "CI" in os.environ else 0.1)
time.sleep(10 if "CI" in os.environ else 0.1)
"""
)
testdir.makeini(
@ -71,8 +71,6 @@ def test_timeout(testdir, enabled):
result = testdir.runpytest_subprocess(*args)
tb_output = "most recent call first"
if sys.version_info[:2] == (3, 3):
tb_output = "Thread"
if enabled:
result.stderr.fnmatch_lines(["*%s*" % tb_output])
else: