mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-16 19:48:30 +00:00
feat: add crewai-tools library to workspace
- Migrate crewai-tools as standalone package in lib/tools - Configure UV workspace for monorepo structure - Move assets to repository root - Clean up duplicate README files - Focus pre-commit hooks on lib/crewai/src only
This commit is contained in:
10
lib/tools/tests/tools/test_import_without_warnings.py
Normal file
10
lib/tools/tests/tools/test_import_without_warnings.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import pytest
|
||||
from pydantic.warnings import PydanticDeprecatedSince20
|
||||
|
||||
|
||||
@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
|
||||
Reference in New Issue
Block a user