From b4cb76cf1889f744fe6f43fd87636c9c6bfbafba Mon Sep 17 00:00:00 2001 From: Florian Zimmermann Date: Tue, 16 Jul 2024 17:57:44 +0200 Subject: [PATCH] actually run the tests in python 3.12 and 3.13 --- tox.ini | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index fdec66d0..00c10174 100644 --- a/tox.ini +++ b/tox.ini @@ -5,10 +5,8 @@ skipsdist = true [testenv] deps = .[test] -setenv = - PYTHONPATH = .:{envdir} commands = - py{38,39,310,311,12,13}: pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs} + pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs} [testenv:pre-commit] basepython = python3.10