Skip to content

Commit

Permalink
BUG: Remove Python 3.8 conditions in test.yml
Browse files Browse the repository at this point in the history
We no longer support Python 3.8
  • Loading branch information
thewtex authored Nov 5, 2024
1 parent 05c5696 commit b46fcb4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,13 @@ 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 b46fcb4

Please sign in to comment.