Merge "remove bandit from testing"

This commit is contained in:
Zuul 2019-05-10 17:07:23 +00:00 committed by Gerrit Code Review
commit c7dfbd39fe
3 changed files with 0 additions and 17 deletions

View File

@ -1,7 +1,6 @@
alabaster==0.7.10
appdirs==1.4.3
Babel==2.5.3
bandit==1.1.0
certifi==2018.1.18
chardet==3.0.4
cliff==2.11.0

View File

@ -20,7 +20,6 @@ testscenarios>=0.4 # Apache-2.0/BSD
testtools>=2.2.0 # MIT
oslotest>=3.2.0 # Apache-2.0
os-testr>=1.0.0 # Apache-2.0
bandit>=1.1.0 # Apache-2.0
# Dependencies for each of the optional stores
oslo.vmware>=2.17.0 # Apache-2.0

15
tox.ini
View File

@ -28,23 +28,8 @@ basepython = python3
commands =
flake8 {posargs}
# Run security linter
# The following bandit tests are being skipped:
# B101 - Use of assert detected.
# B110 - Try, Except, Pass detected.
# B303 - Use of insecure MD2, MD4, or MD5 hash function.
bandit -r glance_store -x tests --skip B101,B110,B303
doc8 {posargs}
[testenv:bandit]
basepython = python3
# NOTE(browne): This is required for the integration test job of the bandit
# project. Please do not remove.
# The following bandit tests are being skipped:
# B101 - Use of assert detected.
# B110 - Try, Except, Pass detected.
# B303 - Use of insecure MD2, MD4, or MD5 hash function.
commands = bandit -r glance_store -x tests --skip B101,B110,B303
[testenv:cover]
basepython = python3
setenv =