summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-05-10 17:07:23 +0000
committerGerrit Code Review <review@openstack.org>2019-05-10 17:07:23 +0000
commitc7dfbd39fe0ebdae8ae67301a88ecdc4d96b1823 (patch)
tree7358f5705c03841a5d3620ec8181400d1256b754
parent25908e2a12452fde644f113c8bf6d0282f0c192b (diff)
parent0b23b4f229344827db39edecb2518705d7a47ffe (diff)
downloadglance_store-c7dfbd39fe0ebdae8ae67301a88ecdc4d96b1823.tar.gz
Merge "remove bandit from testing"
-rw-r--r--lower-constraints.txt1
-rw-r--r--test-requirements.txt1
-rw-r--r--tox.ini15
3 files changed, 0 insertions, 17 deletions
diff --git a/lower-constraints.txt b/lower-constraints.txt
index 6d7c5a1..5879fc5 100644
--- a/lower-constraints.txt
+++ b/lower-constraints.txt
@@ -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
diff --git a/test-requirements.txt b/test-requirements.txt
index 2ddcc91..c3b3255 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -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
diff --git a/tox.ini b/tox.ini
index 80855ae..ced24aa 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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 =