From d70ed7f14e268121efdb2a239f90522f083f10ed Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Wed, 30 Aug 2023 07:24:58 +0100 Subject: [PATCH] Fix coverage --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1bf407d1..d667e1dc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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"] @@ -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