Skip to content

Commit

Permalink
BUG: Skip Python 3.8 for macOS ARM in CI
Browse files Browse the repository at this point in the history
Not available
  • Loading branch information
thewtex committed Jul 19, 2024
1 parent cc121cc commit 28d3573
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
if: ${{ matrix.os != 'mac-14' && matrix.package != '3.8' }}
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
- name: Test with pytest
if: ${{ matrix.os != 'mac-14' && matrix.package != '3.8' }}
run: |
pytest --junitxml=junit/test-results.xml
- name: Publish Test Report
if: ${{ matrix.os != 'mac-14' && matrix.package != '3.8' }}
uses: mikepenz/action-junit-report@v2
with:
report_paths: 'junit/test-results*.xml'

0 comments on commit 28d3573

Please sign in to comment.