We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9788b7f commit 808a1e9Copy full SHA for 808a1e9
.github/workflows/test.yaml
@@ -41,11 +41,11 @@ jobs:
41
42
- name: Run Tox (CPython)
43
if: "${{ !startsWith(matrix.py, 'pypy') }}"
44
- run: tox -e static,optimized,py3
+ run: tox -e optimized,py3
45
46
- name: Run Tox (PyPy)
47
if: "${{ startsWith(matrix.py, 'pypy') }}"
48
- run: tox -e pypy3
+ run: tox -e static,pypy3
49
env:
50
PYPY_GC_MAX: "10G"
51
tox.ini
@@ -3,6 +3,7 @@ min_version = 2.0
3
envlist = py3,pypy3,static
4
5
[testenv:static]
6
+basepython = pypy3
7
extras =
8
lint
9
optimized
0 commit comments