From c734c58b4bc74cfb5775df85743e8db9ab07045f Mon Sep 17 00:00:00 2001 From: ZanSara Date: Tue, 9 May 2023 20:26:59 +0200 Subject: [PATCH] skip flaky test (#4846) --- test/agents/test_agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/agents/test_agent.py b/test/agents/test_agent.py index dce4bf5d3..6ddba2280 100644 --- a/test/agents/test_agent.py +++ b/test/agents/test_agent.py @@ -205,6 +205,7 @@ def test_tool_result_extraction(reader, retriever_with_docs): assert "Christelle" in result +@pytest.mark.skip("FIXME") @pytest.mark.integration @pytest.mark.parametrize("reader", ["farm"], indirect=True) @pytest.mark.parametrize("retriever_with_docs, document_store_with_docs", [("bm25", "memory")], indirect=True)