huggingface[patch]: xfail test (#27031)

This commit is contained in:
Bagatur 2024-10-01 14:14:07 -07:00 committed by GitHub
parent b5e28d3a6d
commit 5f2e93ffea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,6 +65,10 @@ class TestHuggingFaceEndpoint(ChatModelIntegrationTests):
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)