From 1353c48249d0acc1c62c0fd6e0235ac52a8bf52c Mon Sep 17 00:00:00 2001 From: Stefano Borini <sborini@enthought.com> Date: Wed, 26 Jul 2017 11:15:56 +0100 Subject: [PATCH] timeout is not supported in python 2 --- force_bdss/cli/tests/test_execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/force_bdss/cli/tests/test_execution.py b/force_bdss/cli/tests/test_execution.py index fdb30f6..24bf92b 100644 --- a/force_bdss/cli/tests/test_execution.py +++ b/force_bdss/cli/tests/test_execution.py @@ -35,7 +35,7 @@ class TestExecution(unittest.TestCase): stdin=subprocess.PIPE, stdout=subprocess.PIPE) proc.communicate(b"1") - retcode = proc.wait(timeout=5) + retcode = proc.wait() self.assertEqual(retcode, 0) def test_unsupported_file_input(self): -- GitLab