Increase timeout in test_testdir_run_with_timeout to decrease false failures

This commit is contained in:
Kyle Altendorf 2018-10-06 22:02:33 -04:00
parent ccaec8d360
commit 48dcc67274
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ def test_testdir_run_with_timeout(testdir):
testfile = testdir.makepyfile("def test_no_timeout(): pass") testfile = testdir.makepyfile("def test_no_timeout(): pass")
start = time.time() start = time.time()
result = testdir.runpytest_subprocess(testfile, timeout=10) result = testdir.runpytest_subprocess(testfile, timeout=120)
end = time.time() end = time.time()
duration = end - start duration = end - start