Skip to content

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
niccokunzmann committed Aug 30, 2023
1 parent db77958 commit d70ed7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
# [Python version, tox env, OS ]
# see for version: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
# see for runners: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
# If you change this, maybe you need to change the coverage version.
# - ["2.7", "py27", "ubuntu-22.04"]
- ["pypy2.7", "pypy", "ubuntu-22.04"]
- ["3.4.10", "py34", "ubuntu-18.04"]
Expand Down Expand Up @@ -50,7 +51,7 @@ jobs:
- name: Test
run: tox -e ${{ matrix.config[1] }}
- name: Coverage
if: matrix.config[0] != '2.7' && matrix.config[0] != 'pypy-2.7' && matrix.config[0] != '3.4.10'
if: matrix.config[0] != '2.7' && matrix.config[0] != 'pypy2.7' && matrix.config[0] != '3.4.10'
run: |
pip install coveralls coverage-python-version
coveralls --service=github
Expand Down

0 comments on commit d70ed7f

Please sign in to comment.