X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=tox.ini;h=71e33ed7e95e4217ccb0225a7788d534cb239073;hb=refs%2Fchanges%2F36%2F68136%2F2;hp=5a1dc7135e70c94c0f701360774d7530b721aa28;hpb=13ac225eb6afbd4e81109ead35d0594c53ce888b;p=functest-kubernetes.git diff --git a/tox.ini b/tox.ini index 5a1dc713..71e33ed7 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,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 {[testenv:bashate]files}