From 82e34b2f6ceab15795ae45b0a00f8fcac15c4d7e Mon Sep 17 00:00:00 2001 From: angrybayblade Date: Thu, 21 Sep 2023 14:48:34 +0530 Subject: [PATCH] fix: increase timeout --- tests/test_cli/test_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli/test_run.py b/tests/test_cli/test_run.py index dc098d8f92..a7d5dfca4d 100644 --- a/tests/test_cli/test_run.py +++ b/tests/test_cli/test_run.py @@ -260,7 +260,7 @@ def test_run_with_profiling(): logfile=sys.stdout, ) - process.expect("Start processing messages", timeout=30) + process.expect("Start processing messages", timeout=60) process.expect("Profiling details", timeout=10) process.control_c() process.wait_to_complete(10)