diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = docs,pep8,pylint,yamllint,ansiblelint,bashate,py38,cover,perm +envlist = docs,pep8,pylint,yamllint,ansiblelint,bashate,py39,cover,perm skipsdist = True [testenv] @@ -20,24 +20,24 @@ commands = nosetests --with-xunit \ xtesting/tests/unit [testenv:docs] -basepython = python3.8 +basepython = python3.9 commands = doc8 README.rst api --ignore-path api/build sphinx-build -W -b html api/ api/build [testenv:pep8] -basepython = python3.8 +basepython = python3.9 commands = flake8 [testenv:pylint] -basepython = python3.8 +basepython = python3.9 whitelist_externals = bash commands = pylint --min-similarity-lines=10 \ --disable=locally-disabled --ignore-imports=y --reports=n --extension-pkg-whitelist=lxml xtesting [testenv:yamllint] -basepython = python3.8 +basepython = python3.9 files = .travis.yml ansible @@ -46,7 +46,7 @@ commands = yamllint -s {[testenv:yamllint]files} [testenv:ansiblelint] -basepython = python3.8 +basepython = python3.9 commands = ansible-lint -x303,305,306 ansible/site.yml @@ -54,17 +54,17 @@ commands = commands = nosetests xtesting/tests/unit [testenv:bashate] -basepython = python3.8 +basepython = python3.9 files = build.sh commands = bashate {[testenv:bashate]files} [testenv:bandit] -basepython = python3.8 +basepython = python3.9 commands = bandit -r xtesting -x tests -n 5 -ll -s B602 [testenv:cover] -basepython = python3.8 +basepython = python3.9 dirs = xtesting/tests/unit/ci xtesting/tests/unit/core @@ -76,7 +76,7 @@ commands = nosetests --with-coverage --cover-tests \ --cover-min-percentage 100 {[testenv:cover]dirs} [testenv:perm] -basepython = python3.8 +basepython = python3.9 whitelist_externals = bash path=. -not -path './.tox/*' -not -path './.git/*' -not -path './doc/reveal.js/*' commands = |