ba5ae13cc1
Build uv cache / build-cache (3.10) (push) Has been cancelled
Build uv cache / build-cache (3.11) (push) Has been cancelled
Build uv cache / build-cache (3.12) (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Check Documentation Broken Links / Check broken links (push) Has been cancelled
Vulnerability Scan / pip-audit (push) Has been cancelled
Build uv cache / build-cache (3.13) (push) Has been cancelled
11 lines
368 B
Python
11 lines
368 B
Python
from pydantic.warnings import PydanticDeprecatedSince20
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.filterwarnings("error", category=PydanticDeprecatedSince20)
|
|
def test_import_tools_without_pydantic_deprecation_warnings():
|
|
# This test is to ensure that the import of crewai_tools does not raise any Pydantic deprecation warnings.
|
|
import crewai_tools
|
|
|
|
assert crewai_tools
|