From 70e90558ae0eb59021a5f79163bd3336ee8e0c4b Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Fri, 23 Feb 2024 01:46:08 +0100 Subject: [PATCH] server: tests: add log in server start to identify why the server does not listen on the CI --- examples/server/tests/features/steps/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/server/tests/features/steps/steps.py b/examples/server/tests/features/steps/steps.py index d6e6cd48a..adb7a0119 100644 --- a/examples/server/tests/features/steps/steps.py +++ b/examples/server/tests/features/steps/steps.py @@ -90,7 +90,7 @@ def step_start_server(context): attempts += 1 if attempts > 20: assert False, "server not started" - print("waiting for server to start...") + print(f"waiting for server to start, connect error code = {result}...") time.sleep(0.1)