diff mbox series

[1/1] support/testing: increase test_python_boto3 timeout

Message ID 20241227155514.2013640-1-ju.o@free.fr
State New
Headers show
Series [1/1] support/testing: increase test_python_boto3 timeout | expand

Commit Message

Julien Olivain Dec. 27, 2024, 3:55 p.m. UTC
After python-boto3 bump in commit [1], the test_python_boto3 runtime
test can fail due to timeout on slow runners. This commit fixes the
issue by increasing the timeout value.

[1] https://gitlab.com/buildroot.org/buildroot/-/commit/7653f066e2b000b55549f53dd56dc377b375be1e

Signed-off-by: Julien Olivain <ju.o@free.fr>
---
Patch tested in:
https://gitlab.com/jolivain/buildroot/-/jobs/8731967177
---
 support/testing/tests/package/test_python_boto3.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/support/testing/tests/package/test_python_boto3.py b/support/testing/tests/package/test_python_boto3.py
index 02a1f69d40..865305411a 100644
--- a/support/testing/tests/package/test_python_boto3.py
+++ b/support/testing/tests/package/test_python_boto3.py
@@ -12,7 +12,7 @@  class TestPythonPy3Boto3(TestPythonPackageBase):
         BR2_TARGET_ROOTFS_EXT2_SIZE="250M"
         """
     sample_scripts = ["tests/package/sample_python_boto3.py"]
-    timeout = 10
+    timeout = 30
 
     def login(self):
         ext2_file = os.path.join(self.builddir, "images", "rootfs.ext2")