From 652884eeed1a951168ccfc50b06a62046b6bf966 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Tue, 5 Aug 2025 21:31:53 -0400 Subject: [PATCH] xfail instead of fails --- .../langchain_tests/integration_tests/chat_models_v1.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/standard-tests/langchain_tests/integration_tests/chat_models_v1.py b/libs/standard-tests/langchain_tests/integration_tests/chat_models_v1.py index 16568b3ff62..0bdfc96bb0c 100644 --- a/libs/standard-tests/langchain_tests/integration_tests/chat_models_v1.py +++ b/libs/standard-tests/langchain_tests/integration_tests/chat_models_v1.py @@ -1355,7 +1355,7 @@ class ChatModelV1IntegrationTests(ChatModelV1Tests): super().test_tool_message_histories_list_content(*args) """ # noqa: E501 - pytest.fail("Test not implemented yet.") + pytest.xfail("Test not implemented yet.") # TODO # if not self.has_tool_calling: @@ -2032,7 +2032,7 @@ class ChatModelV1IntegrationTests(ChatModelV1Tests): the ``supports_pdf_inputs`` property to False. """ - pytest.fail("Test not implemented yet.") + pytest.xfail("Test not implemented yet.") # TODO # if not self.supports_pdf_inputs: @@ -2328,7 +2328,7 @@ class ChatModelV1IntegrationTests(ChatModelV1Tests): False. """ - pytest.fail("Test not implemented yet.") + pytest.xfail("Test not implemented yet.") # TODO # if not self.supports_image_tool_message: @@ -2504,7 +2504,7 @@ class ChatModelV1IntegrationTests(ChatModelV1Tests): set the ``supports_anthropic_inputs`` property to False. """ # noqa: E501 - pytest.fail("Test not implemented yet.") + pytest.xfail("Test not implemented yet.") # TODO # if not self.supports_anthropic_inputs: