From e5a13482f334f14d954c55a03f8205501dc15348 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Wed, 4 Dec 2024 16:11:48 -0600 Subject: [PATCH] Specify the PyPy version to target in tox This helps ensure that PyPy 3.10 is actually getting tested locally. --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 0f2edd4..5bd97e9 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -27,7 +27,7 @@ deps = commands = pytest -Werror --doctest-glob="*.rst" {posargs} -[testenv:{pypy,graalpy}] +[testenv:{pypy310,graalpy}] deps = pytest pyyaml