Skip to content

Commit

Permalink
Wait a little longer before keyboard interrupting, because Python 3.8…
Browse files Browse the repository at this point in the history
… on travis seems to be slower...
  • Loading branch information
jobovy committed Mar 15, 2020
1 parent c41c708 commit 75c37b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_orbit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 75c37b5

Please sign in to comment.