From 9420b4df34a6e0e1b19ca970b689ec46aa502fed Mon Sep 17 00:00:00 2001 From: Lukasz Taczuk Date: Sun, 1 Dec 2024 23:19:05 +0100 Subject: [PATCH] Extend the timeout value for tests --- tests/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.py b/tests/tests.py index 0bb5939..762c39b 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -266,7 +266,7 @@ def test_cython_mod(self): request = self.create_request('cython_basic.compile_python_extension_do_not_use_this_way', [setup_py_path]) output, err, code = self._call_tester(self.pythia_path, request, loaded_pbos=[os.path.join('@CythonMod', 'addons', 'cython_mod.pbo')], - timeout=30) + timeout=60) # Mild check self.assertIn('running build_ext', output)