Skip to content

Commit

Permalink
Test compatibility with 3.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
menouarazib committed Oct 10, 2023
1 parent c56ad92 commit 0f07b24
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ "3.9", "3.10", "3.11" ]
python-version: [ "3.11" ]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -48,14 +48,14 @@ jobs:
run: |
coverage run -m pytest tests/
coverage xml -o coverage.xml
- name: Upload coverage report (only for ubuntu-latest and python 3.10)
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' }}
- name: Upload coverage report (only for ubuntu-latest and python 3.11)
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
uses: actions/upload-artifact@v3
with:
name: coverage-report
path: coverage.xml
- name: Run Coveralls (only for ubuntu-latest and python 3.10)
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' }}
- name: Run Coveralls (only for ubuntu-latest and python 3.11)
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: coverallsapp/github-action@v2

0 comments on commit 0f07b24

Please sign in to comment.