increase unittest timeouts to decrease travis false positive failures

This commit is contained in:
Daniel Graña 2013-09-05 21:52:54 -03:00
parent 801564c2c9
commit 65135db70c
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class ProjectTest(unittest.TestCase):
while p.poll() is None:
sleep(interval)
waited += interval
if waited > 5:
if waited > 15:
p.kill()
assert False, 'Command took too much time to complete'