crewaiinc--crewai
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
Build uv cache / build-cache (3.13) (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
13 行
372 B
Python
13 行
372 B
Python
import pytest
|
|
|
|
from crewai_tools.tools.firecrawl_search_tool.firecrawl_search_tool import FirecrawlSearchTool
|
|
|
|
|
|
@pytest.mark.vcr()
|
|
def test_firecrawl_search_tool_integration():
|
|
tool = FirecrawlSearchTool()
|
|
result = tool.run(query="firecrawl")
|
|
|
|
assert result is not None
|
|
assert hasattr(result, 'web') or hasattr(result, 'news') or hasattr(result, 'images')
|