Skip to content

Commit 94e3ffa

Browse files
committed
Fix pypy envs.
1 parent 404bc78 commit 94e3ffa

File tree

2 files changed

+31
-13
lines changed

2 files changed

+31
-13
lines changed

.github/workflows/test.yml

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -109,23 +109,41 @@ jobs:
109109
python_arch: 'x64'
110110
tox_env: 'py310-pytest71-xdist250-coverage64'
111111
os: 'macos-latest'
112-
- name: 'pypy3-pytest71-xdist250-coverage64 (ubuntu)'
113-
python: 'pypy-3.'
114-
toxpython: 'pypy3.'
112+
- name: 'pypy37-pytest71-xdist250-coverage64 (ubuntu)'
113+
python: 'pypy-3.7'
114+
toxpython: 'pypy3.7'
115115
python_arch: 'x64'
116-
tox_env: 'pypy3-pytest71-xdist250-coverage64'
116+
tox_env: 'pypy37-pytest71-xdist250-coverage64'
117117
os: 'ubuntu-latest'
118-
- name: 'pypy3-pytest71-xdist250-coverage64 (windows)'
119-
python: 'pypy-3.'
120-
toxpython: 'pypy3.'
118+
- name: 'pypy37-pytest71-xdist250-coverage64 (windows)'
119+
python: 'pypy-3.7'
120+
toxpython: 'pypy3.7'
121121
python_arch: 'x64'
122-
tox_env: 'pypy3-pytest71-xdist250-coverage64'
122+
tox_env: 'pypy37-pytest71-xdist250-coverage64'
123123
os: 'windows-latest'
124-
- name: 'pypy3-pytest71-xdist250-coverage64 (macos)'
125-
python: 'pypy-3.'
126-
toxpython: 'pypy3.'
124+
- name: 'pypy37-pytest71-xdist250-coverage64 (macos)'
125+
python: 'pypy-3.7'
126+
toxpython: 'pypy3.7'
127127
python_arch: 'x64'
128-
tox_env: 'pypy3-pytest71-xdist250-coverage64'
128+
tox_env: 'pypy37-pytest71-xdist250-coverage64'
129+
os: 'macos-latest'
130+
- name: 'pypy38-pytest71-xdist250-coverage64 (ubuntu)'
131+
python: 'pypy-3.8'
132+
toxpython: 'pypy3.8'
133+
python_arch: 'x64'
134+
tox_env: 'pypy38-pytest71-xdist250-coverage64'
135+
os: 'ubuntu-latest'
136+
- name: 'pypy38-pytest71-xdist250-coverage64 (windows)'
137+
python: 'pypy-3.8'
138+
toxpython: 'pypy3.8'
139+
python_arch: 'x64'
140+
tox_env: 'pypy38-pytest71-xdist250-coverage64'
141+
os: 'windows-latest'
142+
- name: 'pypy38-pytest71-xdist250-coverage64 (macos)'
143+
python: 'pypy-3.8'
144+
toxpython: 'pypy3.8'
145+
python_arch: 'x64'
146+
tox_env: 'pypy38-pytest71-xdist250-coverage64'
129147
os: 'macos-latest'
130148
steps:
131149
- uses: actions/checkout@v2

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ passenv =
1313
envlist =
1414
check
1515
py{36}-pytest{70}-xdist250-coverage{62}
16-
py{37,38,39,310,py3}-pytest{71}-xdist250-coverage{64}
16+
py{37,38,39,310,py37,py38}-pytest{71}-xdist250-coverage{64}
1717
docs
1818

1919
[testenv]

0 commit comments

Comments
 (0)