Skip to content

Commit

Permalink
Specify the PyPy version to target in tox
Browse files Browse the repository at this point in the history
This helps ensure that PyPy 3.10 is actually getting tested locally.
  • Loading branch information
kurtmckee authored and masklinn committed Dec 7, 2024
1 parent ca65e02 commit e5a1348
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tox]
min_version = 4.0
env_list = py3{9,10,11,12}
pypy
pypy310
graalpy
flake8, black, typecheck
labels =
test = py3{9,10,11,12},pypy,graalpy
test = py3{9,10,11,12},pypy310,graalpy
cpy = py3{9,10,11,12}
pypy = pypy3.10
graal = graalpy-24
Expand All @@ -27,7 +27,7 @@ deps =
commands =
pytest -Werror --doctest-glob="*.rst" {posargs}

[testenv:{pypy,graalpy}]
[testenv:{pypy310,graalpy}]
deps =
pytest
pyyaml
Expand Down

0 comments on commit e5a1348

Please sign in to comment.