Skip to content

Commit 7666b7f

Browse files
committed
Install less
1 parent d7a3242 commit 7666b7f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/evaluate.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ jobs:
102102
npm install
103103
npm run build
104104
105-
- name: Install python packages
106-
run: |
107-
uv pip install -r requirements-dev.txt
108-
109105
- name: Login to Azure
110106
uses: azure/login@v2
111107
with:
@@ -132,6 +128,10 @@ jobs:
132128
run: |
133129
RUNNER_TRACKING_ID="" && (nohup python3 -m uvicorn fastapi_app:create_app --factory > serverlogs.out 2> serverlogs.err &)
134130
131+
- name: Install evaluate dependencies
132+
run: |
133+
uv pip install -r evals/requirements.txt
134+
135135
- name: Evaluate local RAG flow
136136
run: |
137137
python evals/evaluate.py

evals/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
git+https://github.com/Azure-Samples/ai-rag-chat-evaluator/@installable

requirements-dev.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
-r src/backend/requirements.txt
2+
-r evals/requirements.txt
23
ruff
34
mypy
45
types-requests
@@ -12,5 +13,3 @@ pytest-cov
1213
pytest-playwright
1314
pytest-snapshot
1415
locust
15-
git+https://github.com/Azure-Samples/ai-rag-chat-evaluator/@installable
16-
psycopg2

0 commit comments

Comments
 (0)