Skip to content

Commit 7dd5617

Browse files
committed
Use --system option
1 parent 7cffcda commit 7dd5617

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ on:
1010
branches:
1111
- main
1212

13-
# Set the language, install dependencies, and run the tests
13+
env:
14+
UV_SYSTEM_PYTHON: 1
15+
1416
jobs:
1517
build:
1618
runs-on: ${{ matrix.os }}
@@ -25,16 +27,15 @@ jobs:
2527
- name: Install Python ${{ matrix.python-version }}
2628
run: |
2729
uv python install ${{ matrix.python-version }}
28-
uv venv
2930
uv pip install -e ".[dev]"
3031
- name: Install libsndfile
3132
if: startsWith(matrix.os, 'ubuntu')
3233
run: |
3334
sudo apt-get install -y libsndfile1
3435
- name: Run tests
35-
run: uv run pytest
36+
run: pytest
3637
- name: Check source code format
37-
run: uv run black --check --diff .
38+
run: black --check --diff .
3839

3940
test-deb10-i386:
4041
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)