File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 - name : Run tests
6262 run : hatch run cov-retry
6363
64+ - name : Run unit tests with lowest direct dependencies
65+ run : |
66+ hatch run uv pip compile pyproject.toml --resolution lowest-direct --output-file requirements_lowest_direct.txt
67+ hatch run uv pip install -r requirements_lowest_direct.txt
68+ hatch run test -m "not integration"
69+
6470 - name : Nightly - run unit tests with Haystack main branch
6571 if : github.event_name == 'schedule'
6672 run : |
73+ hatch env prune
6774 hatch run uv pip install git+https://github.com/deepset-ai/haystack.git@main
6875 hatch run cov-retry -m "not integration"
6976
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ classifiers = [
2323 " Programming Language :: Python :: Implementation :: CPython" ,
2424 " Programming Language :: Python :: Implementation :: PyPy" ,
2525]
26- dependencies = [" haystack-ai" , " ragas>=0.2.0 ,<0.3.0" ]
26+ dependencies = [" haystack-ai" , " ragas>=0.2.6 ,<0.3.0" ]
2727
2828[project .urls ]
2929Source = " https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/ragas"
You can’t perform that action at this time.
0 commit comments