Cleanup integration test dir (#3308)

This commit is contained in:
Davis Chase
2023-04-21 09:44:09 -07:00
committed by GitHub
parent 3bc703b0d6
commit 2fd24d31a4
11 changed files with 0 additions and 0 deletions

View File

@@ -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