Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma committed Apr 16, 2022
1 parent c717bcd commit cc9b814
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["2.7", "3.6", "3.7", "3.7.4", "3.8", "3.9", "3.10"]
python-version: ["2.7", "3.6", "3.7", "3.10.1", "3.8", "3.9", "3.10"]

steps:
- name: Checkout Code
Expand Down Expand Up @@ -45,11 +45,11 @@ jobs:
- name: Test with pytest
run: |
python -m coverage run --parallel-mode -m pytest Tests -vv
if: matrix.python-version != '3.7.4'
if: matrix.python-version != '3.10.1'
- name: Test with pytest
run: |
python -OO -m coverage run --parallel-mode -m pytest Tests -vv
if: matrix.python-version == '3.7.4'
if: matrix.python-version == '3.10.1'
- name: Upload coverage data
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit cc9b814

Please sign in to comment.