Move bandit requirement to test-requirements-bandit.txt

The deps in tox.ini wouldn't get updated automatically by the
openstack proposal bot. By moving the bandit requirements into
test-requirements-bandit.txt it will get updated automatically
when global-requirements changes.

Change-Id: Ifb0ec6ce4044adb38a1754521984f9900c612970
This commit is contained in:
Brant Knudson 2015-04-08 13:45:51 -05:00
parent c0fdd027e3
commit eaed64fd4f
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
bandit>=0.10.1

View File

@ -115,7 +115,7 @@ commands=
commands = oslo-config-generator --config-file=config-generator/keystone.conf
[testenv:bandit]
deps = bandit~=0.10.0
deps = -r{toxinidir}/test-requirements-bandit.txt
commands = bandit -c bandit.yaml -r keystone -n5 -p keystone_conservative
[hacking]