From 3d0509687ee76ea746c9147ed56d8acb05396bcd Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Sat, 24 May 2025 07:40:36 -0700 Subject: [PATCH] fix: disable test_responses_store --- tests/integration/agents/test_openai_responses.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/agents/test_openai_responses.py b/tests/integration/agents/test_openai_responses.py index c9c1d4fa8..a3a255144 100644 --- a/tests/integration/agents/test_openai_responses.py +++ b/tests/integration/agents/test_openai_responses.py @@ -41,6 +41,7 @@ def openai_client(client_with_models): ], ], ) +@pytest.mark.skip(reason="Very flaky, sometimes there is a message not a function call, standard tool calling issues") def test_responses_store(openai_client, client_with_models, text_model_id, stream, tools): if isinstance(client_with_models, LlamaStackAsLibraryClient): pytest.skip("OpenAI responses are not supported when testing with library client yet.")