From 783a0f08dd4b2e0ac2ab5ee9ba97c5adfd14ff0a Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 30 Sep 2024 09:57:25 -0500 Subject: [PATCH] extend tox coverage to Python 3.12 Signed-off-by: Brian S. Stephan --- tox.ini | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 63e6c39..8ea11b0 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ [tox] isolated_build = true -envlist = begin,py39,py310,py311,coverage,bandit,lint,reuse +envlist = begin,py39,py310,py311,py312,coverage,bandit,lint,reuse [testenv] allow_externals = pytest, coverage @@ -33,6 +33,11 @@ commands = commands = pytest --cov-append --cov={envsitepackagesdir}/gp2040ce_bintools/ --cov-branch +[testenv:py312] +# run pytest with coverage +commands = + pytest --cov-append --cov={envsitepackagesdir}/gp2040ce_bintools/ --cov-branch + [testenv:coverage] # report on coverage runs from above skip_install = true