From 5f2e93ffea2b017fee76d59cfeb8101c5db64d35 Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:14:07 -0700 Subject: [PATCH] huggingface[patch]: xfail test (#27031) --- .../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 98a38ab7c5e19..fd120f3f0f63a 100644 --- a/libs/partners/huggingface/tests/integration_tests/test_standard.py +++ b/libs/partners/huggingface/tests/integration_tests/test_standard.py @@ -65,6 +65,10 @@ def test_bind_runnables_as_tools(self, model: BaseChatModel) -> None: def test_structured_output(self, model: BaseChatModel) -> None: super().test_structured_output(model) + @pytest.mark.xfail(reason=("Not implemented")) + def test_structured_output_async(self, model: BaseChatModel) -> None: # type: ignore[override] + super().test_structured_output(model) + @pytest.mark.xfail(reason=("Not implemented")) def test_structured_output_pydantic_2_v1(self, model: BaseChatModel) -> None: super().test_structured_output_pydantic_2_v1(model)