diff --git a/tox.ini b/tox.ini
index f5aebeb619ceb3275da03778749519898934b229..b40129bcc73beb662b6de005d727247f9cafe564 100644
--- a/tox.ini
+++ b/tox.ini
@@ -44,12 +44,13 @@ commands =
   flake8 {posargs}
   doc8 doc
   python {toxinidir}/tools/validate-all-file.py
-  bandit -r ansible kolla_ansible tests tools
+  bandit --skip B303 -r ansible kolla_ansible tests tools
   yamllint -s .
 
 [testenv:bandit]
+# B303: Use of insecure MD2, MD4, MD5, or SHA1 hash function.
 basepython = python3
-commands = bandit -r ansible kolla_ansible tests tools
+commands = bandit --skip B303 -r ansible kolla_ansible tests tools
 
 [testenv:venv]
 basepython = python3