Skip to content

Commit

Permalink
Merge branch 'mr/trespeuch/fix-py311-tests' into 'master'
Browse files Browse the repository at this point in the history
Run tests with coverage only with Python3.12

Closes #3

See merge request it/e3-aws!33
  • Loading branch information
pierretr committed Dec 11, 2024
2 parents ed1d31b + 507e98a commit 4ab4e67
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ jobs:
run: |
python -m pip install -U pip
python -m pip install tox
- name: Run Tox
- name: Run Tox without coverage
if: matrix.python != '3.12'
run: tox
env:
TOXENV: py${{ matrix.python-version}}
- name: Run Tox with coverage
if: matrix.python == '3.12'
run: tox
env:
TOXENV: py${{ matrix.python-version}}-cov-codecov
Expand Down

0 comments on commit 4ab4e67

Please sign in to comment.