From 224998055e40fb7b4f0391b6a41164ef5e0cdcd1 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Sun, 21 Aug 2022 15:09:50 +0100 Subject: [PATCH 1/3] add pypy for testing on branch 4.x --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0997810a..f790a766 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,6 +17,7 @@ jobs: # see for version: https://github.com/raw/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 - ["2.7", "py27", "ubuntu-latest"] + - ["pypy", "pypy", "ubuntu-latest"] - ["3.4.10", "py34", "ubuntu-18.04"] - ["3.5.10", "py35", "ubuntu-latest"] - ["3.6", "py36", "ubuntu-latest"] From 801eb359005af54501c73a2fa470048522d01570 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Sun, 21 Aug 2022 19:31:14 +0100 Subject: [PATCH 2/3] Try out using pypy-2.7 see https://github.com/actions/setup-python/issues/261#issuecomment-951751669 see https://github.com/collective/icalendar/pull/372/commits --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f790a766..98f4898e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: # see for version: https://github.com/raw/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 - ["2.7", "py27", "ubuntu-latest"] - - ["pypy", "pypy", "ubuntu-latest"] + - ["pypy-2.7", "pypy", "ubuntu-latest"] - ["3.4.10", "py34", "ubuntu-18.04"] - ["3.5.10", "py35", "ubuntu-latest"] - ["3.6", "py36", "ubuntu-latest"] From 0afcc625dab790c0e080747fd400deb3d00f9c4b Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Sun, 21 Aug 2022 19:35:46 +0100 Subject: [PATCH 3/3] ignore coverage for pypy-2.7 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 98f4898e..6bd86c24 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -50,7 +50,7 @@ jobs: - name: Test run: tox -e ${{ matrix.config[1] }} - name: Coverage - if: matrix.config[0] != '2.7' && matrix.config[0] != '3.4.10' + if: matrix.config[0] != '2.7' && matrix.config[0] != 'pypy-2.7' && matrix.config[0] != '3.4.10' run: | pip install coveralls coverage-python-version coveralls --service=github