From 75c37b5fb0bab12694db48e344d5b9d42b88b64d Mon Sep 17 00:00:00 2001 From: Jo Bovy Date: Sun, 15 Mar 2020 13:35:46 -0400 Subject: [PATCH] Wait a little longer before keyboard interrupting, because Python 3.8 on travis seems to be slower... --- tests/test_orbit.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_orbit.py b/tests/test_orbit.py index 2bb88cc62..9e5dd294a 100644 --- a/tests/test_orbit.py +++ b/tests/test_orbit.py @@ -3900,7 +3900,7 @@ def test_orbit_c_sigint_full(): stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - time.sleep(4) + time.sleep(8) os.kill(p.pid,signal.SIGINT) time.sleep(4) cnt= 0 @@ -3935,7 +3935,7 @@ def test_orbit_c_sigint_planar(): stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - time.sleep(4) + time.sleep(8) os.kill(p.pid,signal.SIGINT) time.sleep(4) cnt= 0 @@ -3966,7 +3966,7 @@ def test_orbit_c_sigint_planardxdv(): stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - time.sleep(4) + time.sleep(8) os.kill(p.pid,signal.SIGINT) time.sleep(4) cnt= 0