Skip to content

Commit c688ecb

Browse files
committed
fix: fix uv
1 parent 20eda85 commit c688ecb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/evaluations.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555
run: uv pip install -e .
5656

5757
- name: Run evaluations
58-
run: npm run test:evals
58+
run: |
59+
source .venv/bin/activate
60+
npm run test:evals
5961
env:
6062
PHOENIX_API_KEY: ${{ secrets.PHOENIX_API_KEY }}
6163
PHOENIX_COLLECTOR_ENDPOINT: ${{ secrets.PHOENIX_COLLECTOR_ENDPOINT }}

evals/run_evaluation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"""
55

66
import json
7-
import os
87
import sys
98
from copy import deepcopy
109
from pathlib import Path

0 commit comments

Comments
 (0)