Skip to content

Commit

Permalink
chore: new test fix for latest python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Sep 8, 2024
1 parent 791441c commit 7e1892b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,13 @@ jobs:
- run: python --version
- run: pip install setuptools
- run: python setup.py build
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'
- run: |
pip install pytest
pip install .
pytest
- run: python setup.py test
if: matrix.python-version != '3.12'
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'
build-macos-legacy:
name: Build MacOS Legacy
timeout-minutes: 10
Expand All @@ -116,9 +117,10 @@ jobs:
- run: python --version
- run: pip install setuptools
- run: python setup.py build
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'
- run: |
pip install pytest
pip install .
pytest
- run: python setup.py test
if: matrix.python-version != '3.12'
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'

0 comments on commit 7e1892b

Please sign in to comment.