Increase timeout in test_testdir_run_with_timeout to decrease false failures
This commit is contained in:
parent
ccaec8d360
commit
48dcc67274
|
@ -413,7 +413,7 @@ def test_testdir_run_with_timeout(testdir):
|
|||
testfile = testdir.makepyfile("def test_no_timeout(): pass")
|
||||
|
||||
start = time.time()
|
||||
result = testdir.runpytest_subprocess(testfile, timeout=10)
|
||||
result = testdir.runpytest_subprocess(testfile, timeout=120)
|
||||
end = time.time()
|
||||
duration = end - start
|
||||
|
||||
|
|
Loading…
Reference in New Issue