You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/tests/unit_tests/test_utils.py

13 lines
316 B
Python

import pytest
from langchain.utils import check_package_version
def test_check_package_version_pass() -> None:
check_package_version("PyYAML", gte_version="5.4.1")
def test_check_package_version_fail() -> None:
with pytest.raises(ValueError):
check_package_version("PyYAML", lt_version="5.4.1")