From 3af8440270881186ffaff17b4d3c61dfec98f240 Mon Sep 17 00:00:00 2001 From: Yun Kim Date: Tue, 30 Jul 2024 16:19:58 -0400 Subject: [PATCH] make skip conditional less precise for CI --- tests/contrib/langchain/test_langchain_community.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/contrib/langchain/test_langchain_community.py b/tests/contrib/langchain/test_langchain_community.py index 94fb07d45cc..60eb06b71dc 100644 --- a/tests/contrib/langchain/test_langchain_community.py +++ b/tests/contrib/langchain/test_langchain_community.py @@ -16,7 +16,7 @@ LANGCHAIN_VERSION = parse_version(langchain.__version__) -pytestmark = pytest.mark.skipif(LANGCHAIN_VERSION < (0, 1, 0), reason="This module only tests langchain >= 0.1") +pytestmark = pytest.mark.skipif(LANGCHAIN_VERSION < (0, 1), reason="This module only tests langchain >= 0.1") IGNORE_FIELDS = [ "resources",