From 65135db70cde02294598bfd4dc088936e703dc7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Thu, 5 Sep 2013 21:52:54 -0300 Subject: [PATCH] increase unittest timeouts to decrease travis false positive failures --- scrapy/tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/tests/test_commands.py b/scrapy/tests/test_commands.py index 973b60a05..5927a2eb3 100644 --- a/scrapy/tests/test_commands.py +++ b/scrapy/tests/test_commands.py @@ -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'