From bc9fa5e1029e2be870879699c29351d2f5d948ac 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index f32bcfff..c261c70e 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 @@ -46,9 +46,9 @@ deps = pytest-cov>=4.1,<6 pytest-describe>=2.2,<3 pytest-timeout>=2.3,<3 - py37,py38,py39,pypy39: typing-extensions>=4.7.1,<5 + py3{7,8,9}, pypy39: typing-extensions>=4.7.1,<5 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}