bump timeout

This commit is contained in:
Benjamin Sergeant 2019-04-26 11:53:50 -07:00
parent 9936260711
commit d35818b688

View File

@ -251,8 +251,8 @@ def executeJob(job):
sys.stderr.write('.') sys.stderr.write('.')
# print('Executing ' + job['cmd'] + '...') # print('Executing ' + job['cmd'] + '...')
# 2 minutes of timeout for a single test # 10 minutes of timeout for a single test, cf PR #42
timeout = 2 * 60 timeout = 10 * 60
command = Command(job['cmd']) command = Command(job['cmd'])
timedout, ret = command.run(timeout) timedout, ret = command.run(timeout)