From c69f14bfaa29dd08f4b97975c545e7265aaaf3aa Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Sat, 3 May 2025 14:29:06 -0700 Subject: [PATCH] fix: disable rag_and_code_agent test because no code interpreter anymore --- tests/integration/agents/test_agents.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/agents/test_agents.py b/tests/integration/agents/test_agents.py index 86881ad06..546674708 100644 --- a/tests/integration/agents/test_agents.py +++ b/tests/integration/agents/test_agents.py @@ -552,6 +552,7 @@ def test_rag_agent_with_attachments(llama_stack_client_with_mocked_inference, ag assert "lora" in response.output_message.content.lower() +@pytest.skip(reason="Code interpreter is currently disabled in the Stack") def test_rag_and_code_agent(llama_stack_client_with_mocked_inference, agent_config): if "llama-4" in agent_config["model"].lower(): pytest.xfail("Not working for llama4")