diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-05-25 10:17:21 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-05-25 11:34:14 +0200 |
commit | 11669ed5216c94f3420969aa5b31e0687af33f18 (patch) | |
tree | 410914126ea0e5aacc5ccbd957e31804065c2bed /tox.ini | |
parent | f3da18828db1665f9e293bdc5248d32eb7e91f7f (diff) |
Run bandit when verifying changes
It reports only MEDIUM issues or higher like nova [1]
[1] https://github.com/openstack/nova/blob/master/tox.ini#L221
Change-Id: I1302b28ed1dcc4e074c6c6f2aa5e915c88eb03f4
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = pep8,pylint,yamllint,ansiblelint,bashate,py27 +envlist = pep8,pylint,yamllint,ansiblelint,bashate,py27,bandit [testenv] usedevelop = True @@ -23,8 +23,7 @@ commands = flake8 [testenv:pylint] basepython = python2.7 -commands = - pylint --disable=locally-disabled --reports=n functest_kubernetes +commands = pylint --disable=locally-disabled --reports=n functest_kubernetes [testenv:yamllint] basepython = python2.7 @@ -36,8 +35,11 @@ commands = [testenv:ansiblelint] basepython = python2.7 -commands = - ansible-lint ansible/site.yml +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 |