File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 60
60
- name : Run tests
61
61
run : hatch run cov-retry
62
62
63
+ - name : Run unit tests with lowest direct dependencies
64
+ run : |
65
+ hatch run uv pip compile pyproject.toml --resolution lowest-direct --output-file requirements_lowest_direct.txt
66
+ hatch run uv pip install -r requirements_lowest_direct.txt
67
+ hatch run test -m "not integration"
68
+
63
69
- name : Nightly - run unit tests with Haystack main branch
64
70
if : github.event_name == 'schedule'
65
71
run : |
72
+ hatch env prune
66
73
hatch run uv pip install git+https://github.com/deepset-ai/haystack.git@main
67
74
hatch run cov-retry -m "not integration"
68
75
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ classifiers = [
25
25
" Programming Language :: Python :: Implementation :: CPython" ,
26
26
" Programming Language :: Python :: Implementation :: PyPy" ,
27
27
]
28
- dependencies = [" requests" , " haystack-ai" ]
28
+ dependencies = [" requests>=2.25.0 " , " haystack-ai" ]
29
29
30
30
[project .urls ]
31
31
Documentation = " https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/jina#readme"
You can’t perform that action at this time.
0 commit comments