From ad43a3d88964cbac360202dc6cc2eae0f9bb1751 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Tue, 3 Sep 2024 21:24:43 +0200 Subject: [PATCH] Fix and simplify tox.ini --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index f32bcfff..ff196c07 100644 --- a/tox.ini +++ b/tox.ini @@ -11,7 +11,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 - pypy3: pypy9 + pypy3: pypy39 pypy3.9: pypy39 pypy3.10: pypy310 @@ -50,5 +50,5 @@ deps = commands = # to also run the time-consuming tests: tox -e py311 -- --run-slow # to run the benchmarks: tox -e py311 -- -k benchmarks --benchmark-enable - py37,py38,py39,py310,py311,pypy39,pypy310: pytest tests {posargs} + py3{7,8,9,10,11},pypy3{9,10}: pytest tests {posargs} py312: pytest tests {posargs: --cov-report=term-missing --cov=graphql --cov=tests --cov-fail-under=100}