From 9c88037dbc6cfc99c1be8263ec7a0a196da47724 Mon Sep 17 00:00:00 2001 From: ccurme Date: Fri, 13 Sep 2024 19:16:06 -0400 Subject: [PATCH] huggingface[patch]: xfail test (#26479) --- .../huggingface/tests/integration_tests/test_standard.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/partners/huggingface/tests/integration_tests/test_standard.py b/libs/partners/huggingface/tests/integration_tests/test_standard.py index f9180b4771..98a38ab7c5 100644 --- a/libs/partners/huggingface/tests/integration_tests/test_standard.py +++ b/libs/partners/huggingface/tests/integration_tests/test_standard.py @@ -69,6 +69,10 @@ class TestHuggingFaceEndpoint(ChatModelIntegrationTests): def test_structured_output_pydantic_2_v1(self, model: BaseChatModel) -> None: super().test_structured_output_pydantic_2_v1(model) + @pytest.mark.xfail(reason=("Not implemented")) + def test_structured_output_optional_param(self, model: BaseChatModel) -> None: + super().test_structured_output_optional_param(model) + @pytest.mark.xfail(reason=("Not implemented")) def test_tool_message_histories_list_content(self, model: BaseChatModel) -> None: super().test_tool_message_histories_list_content(model)