Skip to content

Commit

Permalink
Have a separate section for tests on 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aklajnert committed Aug 27, 2023
1 parent 2edeb46 commit b12bc5f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,23 @@ jobs:
sudo apt-get install python3.6
- name: Setup Nox
if: matrix.platform != 'ubuntu-latest' || matrix.python-version != '3.6'
uses: wntrblm/nox@2023.04.22
with:
python-versions: ${{ matrix.python-version }}
- name: Run tests
if: matrix.platform != 'ubuntu-latest' || matrix.python-version != '3.6'
run: |
nox -s tests-${{ matrix.python-version }}
env:
PLATFORM: ${{ matrix.platform }}
- name: Run tests ubuntu 3.6
if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.6'
run: |
sudo apt-get install -y nox
nox -s tests-${{ matrix.python-version }}
env:
PLATFORM: ${{ matrix.platform }}
- name: Update coverage
if: matrix.python-version != 'pypy3.8'
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit b12bc5f

Please sign in to comment.