diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = docs,pep8,pylint,yamllint,ansiblelint,bashate,py27,perm,cover +envlist = docs,pep8,pylint,yamllint,ansiblelint,bashate,bandit,py27,perm,cover [testenv] usedevelop = True @@ -75,6 +75,11 @@ files = build.sh commands = bashate {[testenv:bashate]files} + +[testenv:bandit] +basepython = python2.7 +commands = bandit -r functest -x tests -n 5 -ll -s B601,B602 + [testenv:cover] basepython = python2.7 dirs = |