Merge branch 'main' into bugfix-python-3-10

This commit is contained in:
Lucas Gomide
2025-04-09 11:58:16 -03:00
committed by GitHub
2 changed files with 19 additions and 0 deletions

15
tests/imports_test.py Normal file
View File

@@ -0,0 +1,15 @@
"""Test that all public API classes are properly importable."""
def test_task_output_import():
"""Test that TaskOutput can be imported from crewai."""
from crewai import TaskOutput
assert TaskOutput is not None
def test_crew_output_import():
"""Test that CrewOutput can be imported from crewai."""
from crewai import CrewOutput
assert CrewOutput is not None