Correct the bandit test dependency

Anchor currently fixes the version of bandit to use as 0.10.0.
And because it was in a separate test-bandit-requirements.txt file,
the OpenStack proposal bot never updated it.

This change removes the separate file and merges into regular test
requirements.  As a result, bandit version will jump to 0.17.3

Change-Id: I0988f603d20a2bd21928d1bf009e32db901168a2
This commit is contained in:
Eric Brown 2016-02-04 11:32:43 -08:00
parent 3cf8e51dce
commit 1cd6e07b68
3 changed files with 3 additions and 2 deletions

View File

@ -1 +0,0 @@
bandit==0.10.0

View File

@ -15,3 +15,5 @@ requests-mock>=0.7.0 # Apache-2.0
# Documentation build requirements
sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD
oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0
bandit>=0.17.3 # Apache-2.0

View File

@ -40,7 +40,7 @@ commands =
coverage xml
[testenv:bandit]
deps = -r{toxinidir}/test-requirements-bandit.txt
deps = -r{toxinidir}/test-requirements.txt
commands = bandit -c bandit.yaml -r anchor -n5 -p anchor_conservative
[flake8]