From 2528f0cc79ee8a0ab2c401c91e252a7833f878d0 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Sun, 3 Nov 2024 13:03:16 -0800 Subject: [PATCH] add py313 to tox and break out python env list --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6b22556..0503cab 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,15 @@ [tox] -envlist = py37,py38,py39,py310,py311,py312,pypy3,coverage-report,packaging +python_envs = py37,py38,py39,py310,py311,py312,py313,pypy3 +envlist = {[tox]python_envs},coverage-report,packaging [testenv] changedir = .tox deps = -rrequirements.txt commands = coverage run --parallel --rcfile {toxinidir}/.tox-coveragerc -m pytest -vv --doctest-modules {envsitepackagesdir}/glom {posargs} + [testenv:coverage-report] +depends = {[tox]python_envs} changedir = .tox deps = coverage commands = coverage combine --rcfile {toxinidir}/.tox-coveragerc