[tests] timeout integration tests on travis after 20 minutes

This commit is contained in:
John Newbery 2017-06-08 09:33:52 -04:00
parent 7c51e9f0dc
commit 0a4912e46a
1 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,7 @@ import datetime
import os
import time
import shutil
import signal
import sys
import subprocess
import tempfile
@ -389,6 +390,10 @@ class TestHandler:
time.sleep(.5)
for j in self.jobs:
(name, time0, proc, log_out, log_err) = j
if os.getenv('TRAVIS') == 'true' and int(time.time() - time0) > 20 * 60:
# In travis, timeout individual tests after 20 minutes (to stop tests hanging and not
# providing useful output.
proc.send_signal(signal.SIGINT)
if proc.poll() is not None:
log_out.seek(0), log_err.seek(0)
[stdout, stderr] = [l.read().decode('utf-8') for l in (log_out, log_err)]