Skip to content

Commit db65ac6

Browse files
committed
Fix gh action for testing
1 parent 69d8ea4 commit db65ac6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@ jobs:
1717
run: |
1818
curl -LsSf https://astral.sh/uv/install.sh | sh
1919
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
20+
uv --version # Verify installation
2021
2122
- name: Install dependencies
2223
run: |
23-
uv venv
24-
. .venv/bin/activate
24+
uv venv .venv
25+
source .venv/bin/activate
26+
uv pip install --upgrade pip
2527
uv pip install pytest opencv-python numpy
2628
uv pip install -e .
2729
2830
- name: Run tests
2931
run: |
30-
uv python -m pytest tests/
32+
source .venv/bin/activate
33+
python -m pytest tests/

0 commit comments

Comments
 (0)