mirror of
https://github.com/hwchase17/langchain.git
synced 2025-11-02 09:14:45 +00:00
Cleanup integration test dir (#3308)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import pytest
|
||||
|
||||
from langchain.tools.ddg_search.tool import DuckDuckGoSearchTool
|
||||
|
||||
|
||||
def ddg_installed() -> bool:
|
||||
try:
|
||||
from duckduckgo_search import ddg # noqa: F401
|
||||
|
||||
return True
|
||||
except Exception as e:
|
||||
print(f"duckduckgo not installed, skipping test {e}")
|
||||
return False
|
||||
|
||||
|
||||
@pytest.mark.skipif(not ddg_installed(), reason="requires duckduckgo-search package")
|
||||
def test_ddg_search_tool() -> None:
|
||||
keywords = "Bella Ciao"
|
||||
tool = DuckDuckGoSearchTool()
|
||||
result = tool(keywords)
|
||||
print(result)
|
||||
assert len(result.split()) > 20
|
||||
Reference in New Issue
Block a user