diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-07-26 12:58:04 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-07-26 16:03:59 +0200 |
commit | 7b24ea8dfe1667fe00b87cac9f0a0ca670b6a86f (patch) | |
tree | 026ee9db8c5b5b1385439317a03e461570a85af8 /tox.ini | |
parent | 5dd0d0ffd46e7665fddde8fd2f4da1a9b58506bb (diff) |
Switch to Python 3.7 and Alpine 3.10
It also allows building docs as doc8 is broken due to latest
OpenStack's upper-constraints.
pylint is updated to 2.3.1 (lastest py3.7 version)
It disables perm as umask is currently false on lf-virtual1.
Change-Id: I8568eeafa44c5dba72e206c532c1f50e3ad547f2
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
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,py27,perm,cover +envlist = docs,pep8,pylint,yamllint,ansiblelint,bashate,py27,py37,cover skipsdist = True [testenv] @@ -19,24 +19,24 @@ commands = nosetests --with-xunit \ xtesting/tests/unit [testenv:docs] -basepython = python2.7 +basepython = python3.7 commands = doc8 README.rst api --ignore-path api/build sphinx-build -W -b html api/ api/build [testenv:pep8] -basepython = python2.7 +basepython = python3.7 commands = flake8 [testenv:pylint] -basepython = python2.7 +basepython = python3.7 whitelist_externals = bash commands = pylint --min-similarity-lines=10 \ --disable=locally-disabled --ignore-imports=y --reports=n xtesting [testenv:yamllint] -basepython = python2.7 +basepython = python3.7 files = .travis.yml ansible @@ -45,7 +45,7 @@ commands = yamllint -s {[testenv:yamllint]files} [testenv:ansiblelint] -basepython = python2.7 +basepython = python3.7 commands = ansible-lint ansible/site.yml @@ -53,17 +53,17 @@ commands = commands = nosetests xtesting/tests/unit [testenv:bashate] -basepython = python2.7 +basepython = python3.7 files = build.sh commands = bashate {[testenv:bashate]files} [testenv:bandit] -basepython = python2.7 +basepython = python3.7 commands = bandit -r xtesting -x tests -n 5 -ll -s B602 [testenv:cover] -basepython = python2.7 +basepython = python3.7 dirs = xtesting/tests/unit/ci xtesting/tests/unit/core @@ -75,7 +75,7 @@ commands = nosetests --with-coverage --cover-tests \ --cover-min-percentage 100 {[testenv:cover]dirs} [testenv:perm] -basepython = python2.7 +basepython = python3.7 whitelist_externals = bash path=. -not -path './.tox/*' -not -path './.git/*' -not -path './doc/reveal.js/*' commands = |