From 3dceb0402a0647136393cedd93b49287dae9cc6c Mon Sep 17 00:00:00 2001 From: "Guillaume W. Bres" Date: Tue, 2 Aug 2022 19:31:21 +0200 Subject: [PATCH] support/testing/tests/package/test_python_scipy: relax timeout value Importing the scipy module in the Python interpreter running in Qemu takes quite a while on slow machine, so a timeout extension to 30 seconds is needed to make sure the test has the time to run. Signed-off-by: Guillaume W. Bres Signed-off-by: Thomas Petazzoni --- support/testing/tests/package/test_python_scipy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/support/testing/tests/package/test_python_scipy.py b/support/testing/tests/package/test_python_scipy.py index fec4f4319f..007bc9ffa5 100644 --- a/support/testing/tests/package/test_python_scipy.py +++ b/support/testing/tests/package/test_python_scipy.py @@ -20,6 +20,7 @@ class TestPythonPy3SciPy(TestPythonPackageBase): # BR2_TARGET_ROOTFS_TAR is not set """ sample_scripts = ["tests/package/sample_python_scipy.py"] + timeout = 30 def login(self): ext2_file = os.path.join(self.builddir, "images", "rootfs.ext2")