add python 3.12 to tox environments

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2023-12-30 11:13:08 -06:00
parent 713632fe7a
commit 680a2bc764
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
1 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@
[tox]
isolated_build = true
envlist = begin,py38,py39,py310,py311,coverage,security,lint
envlist = begin,py38,py39,py310,py311,py312,coverage,security,lint
[testenv]
allow_externals = pytest, coverage
@ -41,6 +41,11 @@ commands =
commands =
pytest --cov-append --cov={envsitepackagesdir}/incorporealcms/ --cov-branch
[testenv:py312]
# run pytest with coverage
commands =
pytest --cov-append --cov={envsitepackagesdir}/incorporealcms/ --cov-branch
[testenv:coverage]
# report on coverage runs from above
skip_install = true