mirror of
https://github.com/kennethreitz/langchain.git
synced 2026-06-05 23:00:18 +00:00
13 lines
316 B
Python
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")
|