Skip to content

Commit 1df1477

Browse files
chore: drop the test cases for deep research.
1 parent ffce9a3 commit 1df1477

File tree

2 files changed

+3
-24
lines changed

2 files changed

+3
-24
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
- test_translate.py
4747
- test_validate.py
4848
- test_web.py
49-
- test_deep_research.py
5049
- test_ai_scrape.py
5150
- test_vocr.py
5251
steps:

tests/test_deep_research.py

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,11 @@
3030
URL = "https://jigsawstack.com"
3131

3232

33-
# Deep Research Test Cases
3433
DEEP_RESEARCH_TEST_CASES = [
3534
{
3635
"name": "basic_deep_research",
37-
"params": {
38-
"query": "climate change effects",
39-
"max_depth":1
40-
},
41-
},
42-
{
43-
"name": "technical_deep_research",
44-
"params": {
45-
"query": "quantum computing applications in cryptography",
46-
"max_depth": 1,
47-
},
48-
},
49-
{
50-
"name": "deep_research_with_depth",
51-
"params": {
52-
"query": "renewable energy sources",
53-
"max_depth": 2,
54-
},
55-
},
36+
"params": {"query": "climate change effects", "max_depth": 1},
37+
}
5638
]
5739

5840

@@ -72,9 +54,8 @@ def test_deep_research(self, test_case):
7254
assert result["success"]
7355
assert "results" in result
7456
assert isinstance(result["results"], str)
75-
#assert len(result["results"]) > 0
57+
assert len(result["results"]) > 0
7658

77-
# Check for sources
7859
if "sources" in result:
7960
assert isinstance(result["sources"], list)
8061

@@ -101,7 +82,6 @@ async def test_deep_research_async(self, test_case):
10182
assert isinstance(result["results"], str)
10283
assert len(result["results"]) > 0
10384

104-
# Check for sources
10585
if "sources" in result:
10686
assert isinstance(result["sources"], list)
10787

0 commit comments

Comments
 (0)