Skip to content

Commit

Permalink
fix: CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 27, 2024
1 parent 88121f9 commit 6c02da5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
pip install black
black . --check
if: matrix.python-version == '3.12'
- run: python setup.py test
- run: |
pip install pytest
pytest
- run: pypy setup.py test
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'
build-pypy:
name: Build PyPy
strategy:
Expand All @@ -44,4 +48,8 @@ jobs:
pip install black
black . --check
if: matrix.python-version == '3.12'
- run: |
pip install pytest
pytest
- run: pypy setup.py test
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'

0 comments on commit 6c02da5

Please sign in to comment.