Add back a bandit tox job

The bandit project uses an integration test to ensure it doesn't
break other projects by introducing new changes. To run this
integration, it is necessary to have a common tox target of
'bandit'.

Change-Id: I9b80043bde45cfec472402ddab1747d5b2f87da1
This commit is contained in:
Eric Brown 2016-02-17 14:05:17 -08:00
parent 2dedc1cc98
commit ead6061545
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@ commands =
flake8
bandit -c bandit.yaml -r keystonemiddleware -n5 -p gate
[testenv:bandit]
# NOTE(browne): This is required for the integration test job of the bandit
# project. Please do not remove.
commands = bandit -c bandit.yaml -r keystonemiddleware -n5 -p gate
[testenv:venv]
commands = {posargs}