We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d8ea4 commit db65ac6Copy full SHA for db65ac6
.github/workflows/test.yml
@@ -17,14 +17,17 @@ jobs:
17
run: |
18
curl -LsSf https://astral.sh/uv/install.sh | sh
19
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
20
+ uv --version # Verify installation
21
22
- name: Install dependencies
23
- uv venv
24
- . .venv/bin/activate
+ uv venv .venv
25
+ source .venv/bin/activate
26
+ uv pip install --upgrade pip
27
uv pip install pytest opencv-python numpy
28
uv pip install -e .
29
30
- name: Run tests
31
- uv python -m pytest tests/
32
33
+ python -m pytest tests/
0 commit comments