From 6b5cdb7f7e71f744074c4523058461b0ff7d132e Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 7 Oct 2023 13:07:05 -0500 Subject: [PATCH] add python 3.11 to tox tests --- tox.ini | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 325078a..949c5ca 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = begin,py38,py39,py310,coverage,security,lint,bundle +envlist = begin,py38,py39,py310,py311,coverage,security,lint,bundle [testenv] # build a wheel and test it @@ -46,6 +46,11 @@ commands = commands = pytest --cov-append --cov={envsitepackagesdir}/incorporealcms/ --cov-branch +[testenv:py311] +# run pytest with coverage +commands = + pytest --cov-append --cov={envsitepackagesdir}/incorporealcms/ --cov-branch + [testenv:coverage] # report on coverage runs from above skip_install = true @@ -91,6 +96,7 @@ exclude = versioneer.py _version.py instance/ + venv/ extend-ignore = T101 max-complexity = 10 max-line-length = 120