Skip to content

Commit

Permalink
Remove skip marker for langchain community tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
Yun-Kim committed Jul 29, 2024
1 parent c061dce commit 128dd49
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/contrib/langchain/test_langchain_community.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@

LANGCHAIN_VERSION = parse_version(langchain.__version__)

pytestmark = pytest.mark.skipif(
LANGCHAIN_VERSION < (0, 1, 0) or sys.version_info < (3, 10),
reason="This module only tests langchain >= 0.1 and Python 3.10+",
)
pytestmark = pytest.mark.skipif(LANGCHAIN_VERSION < (0, 1, 0), reason="This module only tests langchain >= 0.1")

IGNORE_FIELDS = [
"resources",
Expand Down

0 comments on commit 128dd49

Please sign in to comment.