From a20a9179d935f9faf71d19a9c15b9a15e4c14321 Mon Sep 17 00:00:00 2001 From: JR Boos Date: Tue, 14 Jul 2026 10:38:34 -0400 Subject: [PATCH] log(e2e): added debug print for skills e2e --- tests/e2e/features/steps/llm_query_response.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/features/steps/llm_query_response.py b/tests/e2e/features/steps/llm_query_response.py index 30d327b3c..770f3b461 100644 --- a/tests/e2e/features/steps/llm_query_response.py +++ b/tests/e2e/features/steps/llm_query_response.py @@ -93,6 +93,7 @@ def wait_for_complete_response(context: Context) -> None: """Wait for the response to be complete.""" context.response_data = _parse_streaming_response(context.response.text) context.response.raise_for_status() + print(f"Response data: {context.response_data}") assert context.response_data["finished"] is True context.use_streaming_response_data = True