File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060 - name : Run tests
6161 run : hatch run cov-retry
6262
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+
6369 - name : Nightly - run unit tests with Haystack main branch
6470 if : github.event_name == 'schedule'
6571 run : |
72+ hatch env prune
6673 hatch run uv pip install git+https://github.com/deepset-ai/haystack.git@main
6774 hatch run cov-retry -m "not integration"
6875
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ classifiers = [
2626 " Programming Language :: Python :: Implementation :: CPython" ,
2727 " Programming Language :: Python :: Implementation :: PyPy" ,
2828]
29- dependencies = [" haystack-ai>=2.11.0" , " qdrant-client>=1.10 .0" ]
29+ dependencies = [" haystack-ai>=2.11.0" , " qdrant-client>=1.12 .0" ]
3030
3131[project .urls ]
3232Source = " https://github.com/deepset-ai/haystack-core-integrations"
You can’t perform that action at this time.
0 commit comments