summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-04-22 16:45:24 +0000
committerGerrit Code Review <review@openstack.org>2020-04-22 16:45:24 +0000
commit08c5b4655f2967e9576986cfb7946fd1dddd5ed6 (patch)
tree3f5b725a6bbbe12f076f10c9045f0ad98fbe9a3a
parentfb57fc5806718a65ce45f2d6899f276680d14ab8 (diff)
parentc9eaca9e591baf5c8836467ce55f547513ef429f (diff)
downloadheat-08c5b4655f2967e9576986cfb7946fd1dddd5ed6.tar.gz
Merge "Prepare the six and python 2.7 support dropping"
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 2a2397106..410b3325a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -30,13 +30,14 @@ commands =
# B110: Try, Except, Pass detected.
# B310: Audit url open for permitted schemes
# B311: Standard pseudo-random generators are not suitable for security/cryptographic purposes
+ # B322: The input method is safe in Python 3.
# B404: Import of subprocess module
# B410: Import of lxml module
# B504: Test for SSL use with no version specified
# B506: Test for use of yaml load
# B603: Test for use of subprocess with shell equals true
# B607: Test for starting a process with a partial path
- bandit -r heat -x tests --skip B101,B104,B107,B110,B310,B311,B404,B410,B504,B506,B603,B607
+ bandit -r heat -x tests --skip B101,B104,B107,B110,B310,B311,B322,B404,B410,B504,B506,B603,B607
doc8 {posargs}
[testenv:venv]