From 4c3df47d035d3848cad5a056a3c99d11246ae578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20M=C3=A9lotte?= Date: Tue, 18 Apr 2023 11:43:16 +0200 Subject: [PATCH] support/testing/tests/package/test_python_botocore.py: increase timeout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the current python-botocore version, the test times out on machines on which it was passing with previous versions. Increase the timeout so that the test can be run without using a timeout multiplier. Signed-off-by: Raphaël Mélotte Signed-off-by: Yann E. MORIN --- support/testing/tests/package/test_python_botocore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/test_python_botocore.py b/support/testing/tests/package/test_python_botocore.py index 48c2f3cc02..f123993c08 100644 --- a/support/testing/tests/package/test_python_botocore.py +++ b/support/testing/tests/package/test_python_botocore.py @@ -12,7 +12,7 @@ class TestPythonPy3Botocore(TestPythonPackageBase): BR2_TARGET_ROOTFS_EXT2_SIZE="120M" """ sample_scripts = ["tests/package/sample_python_botocore.py"] - timeout = 10 + timeout = 30 def login(self): ext2_file = os.path.join(self.builddir, "images", "rootfs.ext2")