From 79396b4a26709734907872da535bec45c73c65f8 Mon Sep 17 00:00:00 2001 From: goodboy Date: Tue, 3 Mar 2026 15:46:21 -0500 Subject: [PATCH] 2x the ctl-c loop prompt-timeout for non-linux in CI --- tests/devx/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/devx/conftest.py b/tests/devx/conftest.py index dc148d47..c850da7a 100644 --- a/tests/devx/conftest.py +++ b/tests/devx/conftest.py @@ -293,7 +293,7 @@ def do_ctlc( time.sleep(delay) child.expect( PROMPT, - # timeout=1, # TODO? if needed + timeout=(child.timeout * 2) if _ci_env else child.timeout, ) before = str(child.before.decode()) time.sleep(delay)