Skip to content

Commit 912202e

Browse files
committed
increase unittest timeouts to decrease travis false positive failures
1 parent cfc2d46 commit 912202e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrapy/tests/test_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def proc(self, *new_args, **kwargs):
4141
while p.poll() is None:
4242
sleep(interval)
4343
waited += interval
44-
if waited > 5:
44+
if waited > 15:
4545
p.kill()
4646
assert False, 'Command took too much time to complete'
4747

0 commit comments

Comments
 (0)