From 018fbd84aaefe7079842096d231a76f00a1fe23a Mon Sep 17 00:00:00 2001 From: Yusuke Miyazaki Date: Thu, 31 Dec 2020 00:48:50 +0900 Subject: [PATCH] Run tests on more PyPy versions --- .github/workflows/tests.yml | 4 ++-- setup.cfg | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 222882c..ce6cbf7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: build: runs-on: ${{ matrix.platform }} strategy: - max-parallel: 4 + max-parallel: 8 matrix: # https://help.github.com/articles/virtual-environments-for-github-actions platform: @@ -16,7 +16,7 @@ jobs: - macos-latest # macOS-10.14 - windows-2016 - windows-latest # windows-2019 - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6, pypy-3.7] steps: - uses: actions/checkout@v1 diff --git a/setup.cfg b/setup.cfg index 7221c18..b8b9fa6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -75,7 +75,7 @@ skip_missing_interpreters = true envlist = black flake8 - py{27,35,36,37,38,39}-tox{312,315,latest} + {py27,py35,py36,py37,py38,py39,pypy2,pypy3}-tox{312,315,latest} [gh-actions] python = @@ -85,6 +85,9 @@ python = 3.7: py37 3.8: py38, black, flake8 3.9: py39 + # The following configuration can be updated after publishing #51 + pypy2: pypy2 + pypy3: pypy3 [testenv] description = run test suite under {basepython}