From a4e508f5b1809b0f019a2be3f87b9ed48a2515f0 Mon Sep 17 00:00:00 2001 From: karmacoma Date: Wed, 25 Sep 2024 16:01:01 -0700 Subject: [PATCH] increase wiggle room for slow CI runners --- tests/test_process_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_process_control.py b/tests/test_process_control.py index f22262c..42ed257 100644 --- a/tests/test_process_control.py +++ b/tests/test_process_control.py @@ -81,7 +81,7 @@ def test_cmd_options(): stderr="boop", ) command.start() - stdout, stderr = command.communicate(timeout=0.1) + stdout, stderr = command.communicate(timeout=0.2) print(f"{stdout=}") print(f"{stderr=}")