From 4a8aa0921fc50eb1ed02e29f1cc3a4711ec35c8c Mon Sep 17 00:00:00 2001 From: Yannis Spiliopoulos Date: Sun, 24 Jul 2016 12:46:14 -0400 Subject: [PATCH] Set test timeout to original value --- tests/test_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_worker.py b/tests/test_worker.py index d0db63b..d44990b 100644 --- a/tests/test_worker.py +++ b/tests/test_worker.py @@ -587,7 +587,7 @@ class TimeoutTestCase: def setUp(self): # we want tests to fail if signal are ignored and the work remain # running, so set a signal to kill them after X seconds - self.killtimeout = 20 + self.killtimeout = 10 signal.signal(signal.SIGALRM, self._timeout) signal.alarm(self.killtimeout)