Skip to content

Commit 9ce7f6f

Browse files
committed
Test on PyPy 3.7
1 parent 0472165 commit 9ce7f6f

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.github/workflows/python_ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "windows-2019"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,6 +23,8 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26+
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
27+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
2628

2729
steps:
2830
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy-3.6'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,8 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
26+
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
27+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
2728

2829
steps:
2930
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy-3.6'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,8 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
26+
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
27+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
2728

2829
steps:
2930
- name: Checkout 🛎️

repo_helper.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ python_versions:
2323
- '3.7'
2424
- "3.8"
2525
- "3.9"
26-
- "pypy3"
26+
- pypy36
27+
- pypy37
2728

2829
tests_dir: "tests"
2930

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# * pytest
1515

1616
[tox]
17-
envlist = py36, py37, py38, py39, pypy3, mypy, build
17+
envlist = py36, py37, py38, py39, pypy36, pypy37, mypy, build
1818
skip_missing_interpreters = True
1919
isolated_build = True
2020
requires =
@@ -23,7 +23,7 @@ requires =
2323
tox-pip-version>=0.0.7
2424

2525
[envlists]
26-
test = py36, py37, py38, py39, pypy3
26+
test = py36, py37, py38, py39, pypy36, pypy37
2727
qa = mypy, lint
2828
cov = py36, coverage
2929

0 commit comments

Comments
 (0)