From 552de04bfb69712cf6fd9044cc4f746656adda64 Mon Sep 17 00:00:00 2001 From: link2xt Date: Fri, 3 Jan 2025 01:05:11 +0000 Subject: [PATCH] ci: increase timeout in `test_logged_ac_process_ffi_failure` This test keeps failing on macOS CI, likely because it does not get enough resources to finish in 10 seconds. --- python/tests/test_4_lowlevel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_4_lowlevel.py b/python/tests/test_4_lowlevel.py index 4d9865ec6..dd1d2188e 100644 --- a/python/tests/test_4_lowlevel.py +++ b/python/tests/test_4_lowlevel.py @@ -216,7 +216,7 @@ def test_logged_ac_process_ffi_failure(acfactory): ac1.add_account_plugin(FailPlugin()) # cause any event eg contact added/changed ac1.create_contact("something@example.org") - res = cap.get(timeout=10) + res = cap.get(timeout=600) assert "ac_process_ffi_event" in res assert "ZeroDivisionError" in res assert "Traceback" in res