Merge "Also add B324 to bandit skip list for python3.9+" into stable/xena

This commit is contained in:
Zuul 2022-04-19 15:22:30 +00:00 committed by Gerrit Code Review
commit a640909f56
1 changed files with 3 additions and 2 deletions

View File

@ -210,10 +210,11 @@ import_exceptions = neutron._i18n
envdir = {toxworkdir}/lint
deps = {[testenv:pep8]deps}
# B104: Possible binding to all interfaces
# B303: prohibit list calls: md5, sha1
# B303: prohibit list calls: md5, sha1 for python<3.9
# B311: Standard pseudo-random generators are not suitable for security/cryptographic purpose
# B324: prohibit list calls: md5, sha1 for python>=3.9
# B604: any_other_function_with_shell_equals_true
commands = bandit -r neutron -x tests -n5 -s B104,B303,B311,B604
commands = bandit -r neutron -x tests -n5 -s B104,B303,B311,B324,B604
[testenv:bashate]
envdir = {toxworkdir}/lint