From af7ebc2639eab9359c04c94ba0d2b432bc870278 Mon Sep 17 00:00:00 2001 From: drbh Date: Mon, 26 Feb 2024 04:29:35 +0000 Subject: [PATCH] fix: avoid long runnning test --- integration-tests/models/test_tools_llama.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/models/test_tools_llama.py b/integration-tests/models/test_tools_llama.py index 8c8ce126..5f5ab4c8 100644 --- a/integration-tests/models/test_tools_llama.py +++ b/integration-tests/models/test_tools_llama.py @@ -71,6 +71,7 @@ tools = [ ] +@pytest.mark.skip @pytest.mark.asyncio @pytest.mark.private async def test_flash_llama_grammar_no_tools( @@ -98,6 +99,7 @@ async def test_flash_llama_grammar_no_tools( assert response == response_snapshot +@pytest.mark.skip @pytest.mark.asyncio @pytest.mark.private async def test_flash_llama_grammar_tools(flash_llama_grammar_tools, response_snapshot):