Skip to content

Commit

Permalink
fix(ci): actually run tests on multiple Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jeertmans authored Nov 27, 2024
1 parent 63f6718 commit 3968244
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
with:
enable-cache: true

- name: Setup Python ${{ matrix.pyversion }}
run: uv python install ${{ matrix.pyversion }}

- name: Install Linux dependencies
if: matrix.os == 'ubuntu-latest'
run: |
Expand All @@ -43,8 +40,5 @@ jobs:
if: matrix.os == 'windows-latest'
uses: ssciwr/setup-mesa-dist-win@v2

- name: Install local package
run: uv sync --locked

- name: Run pytest
run: uv run pytest
run: uv run --python ${{ matrix.pyversion }} --frozen pytest

0 comments on commit 3968244

Please sign in to comment.