X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=tox.ini;h=9cbb88e5ef9325f9e4fa26aee775eb1e16a235de;hb=f6f6562705a1e857c055d2ccb875eed4b619ba68;hp=5a1dc7135e70c94c0f701360774d7530b721aa28;hpb=13ac225eb6afbd4e81109ead35d0594c53ce888b;p=functest-kubernetes.git diff --git a/tox.ini b/tox.ini index 5a1dc713..9cbb88e5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,11 @@ [tox] -envlist = pep8,pylint,yamllint,py27,py35 +envlist = pep8,pylint,yamllint,ansiblelint,bashate,py27,py36,bandit [testenv] usedevelop = True deps = -chttps://git.opnfv.org/functest/plain/upper-constraints.txt + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/rocky/upper-constraints.txt} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt install_command = pip install {opts} {packages} @@ -22,11 +23,7 @@ commands = flake8 [testenv:pylint] basepython = python2.7 -whitelist_externals = bash -modules = - functest_kubernetes -commands = - pylint --disable=locally-disabled --reports=n {[testenv:pylint]modules} +commands = pylint --disable=locally-disabled --reports=n functest_kubernetes [testenv:yamllint] basepython = python2.7 @@ -35,3 +32,20 @@ files = docker commands = yamllint {[testenv:yamllint]files} + +[testenv:ansiblelint] +basepython = python2.7 +commands = ansible-lint ansible/site.yml + +[testenv:bandit] +basepython = python2.7 +commands = bandit -r functest_kubernetes -x tests -n 5 -ll + +[testenv:py36] +commands = nosetests functest_kubernetes + +[testenv:bashate] +basepython = python2.7 +files = + build.sh +commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}