Skip to content

Commit 52dd99b

Browse files
committed
Revert
1 parent 7dd5617 commit 52dd99b

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ on:
1010
branches:
1111
- main
1212

13-
env:
14-
UV_SYSTEM_PYTHON: 1
15-
1613
jobs:
1714
build:
1815
runs-on: ${{ matrix.os }}
@@ -25,17 +22,15 @@ jobs:
2522
- name: Setup uv
2623
uses: astral-sh/setup-uv@v3
2724
- name: Install Python ${{ matrix.python-version }}
28-
run: |
29-
uv python install ${{ matrix.python-version }}
30-
uv pip install -e ".[dev]"
25+
run: uv python install ${{ matrix.python-version }}
3126
- name: Install libsndfile
3227
if: startsWith(matrix.os, 'ubuntu')
3328
run: |
3429
sudo apt-get install -y libsndfile1
3530
- name: Run tests
36-
run: pytest
31+
run: uv run pytest
3732
- name: Check source code format
38-
run: black --check --diff .
33+
run: uv run black --check --diff .
3934

4035
test-deb10-i386:
4136
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)