From 41a53a2a13cc8cdb5dcc321ce78581a9252bb03b Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 24 Jun 2021 11:23:36 -0500 Subject: [PATCH] add py39 environment to tox test envs --- tox.ini | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a1079ba..58831ff 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = begin,py37,py38,coverage,security,lint,bundle +envlist = begin,py37,py38,py39,coverage,security,lint,bundle [testenv] # build a wheel and test it @@ -41,6 +41,11 @@ commands = commands = pytest --cov-append --cov={envsitepackagesdir}/incorporealcms/ --cov-branch +[testenv:py39] +# run pytest with coverage +commands = + pytest --cov-append --cov={envsitepackagesdir}/incorporealcms/ --cov-branch + [testenv:coverage] # report on coverage runs from above skip_install = true