Increase pexpect timeouts to prevent tests from failing
This commit is contained in:
@@ -332,7 +332,7 @@ class TestDistribution:
|
|||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
child = testdir.spawn_pytest("-n1 -v")
|
child = testdir.spawn_pytest("-n1 -v", expect_timeout=30.0)
|
||||||
child.expect(".*test_sleep.*")
|
child.expect(".*test_sleep.*")
|
||||||
child.kill(2) # keyboard interrupt
|
child.kill(2) # keyboard interrupt
|
||||||
child.expect(".*KeyboardInterrupt.*")
|
child.expect(".*KeyboardInterrupt.*")
|
||||||
|
|||||||
@@ -284,7 +284,8 @@ class TestFunctional:
|
|||||||
)
|
)
|
||||||
# p = testdir.mkdir("sub").join(p1.basename)
|
# p = testdir.mkdir("sub").join(p1.basename)
|
||||||
# p1.move(p)
|
# p1.move(p)
|
||||||
child = testdir.spawn_pytest("-f %s --traceconfig" % p)
|
child = testdir.spawn_pytest("-f %s --traceconfig" % p,
|
||||||
|
expect_timeout=30.0)
|
||||||
child.expect("def test_one")
|
child.expect("def test_one")
|
||||||
child.expect("x == 1")
|
child.expect("x == 1")
|
||||||
child.expect("1 failed")
|
child.expect("1 failed")
|
||||||
@@ -311,7 +312,8 @@ class TestFunctional:
|
|||||||
pass
|
pass
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
child = testdir.spawn_pytest("-f %s" % p)
|
child = testdir.spawn_pytest("-f %s" % p,
|
||||||
|
expect_timeout=30.0)
|
||||||
child.expect("1 xpass")
|
child.expect("1 xpass")
|
||||||
# child.expect("### LOOPONFAILING ####")
|
# child.expect("### LOOPONFAILING ####")
|
||||||
child.expect("waiting for changes")
|
child.expect("waiting for changes")
|
||||||
|
|||||||
Reference in New Issue
Block a user