From: Jeremy Stanley Date: Sun, 29 Dec 2019 14:25:17 +0000 (+0000) Subject: Set bandit to error on risks of any severity X-Git-Tag: 0.1.0~3 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=03ebfe3129537277ad82553b30f2093bbf5d8e84 Set bandit to error on risks of any severity Now that the last of the low-level risks has been reviewed and whitelisted, remove the severity filter from the bandit command so that incorporation of any unexpected risks it can spot will be blocked for future commits. --- diff --git a/tox.ini b/tox.ini index ccf06a8..23ac936 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ commands = mudpy_selftest mudpy/tests/fixtures/test_daemon.yaml [testenv:bandit] deps = bandit -commands = bandit -ll -r mudpy -x mudpy/tests {posargs} +commands = bandit -r mudpy -x mudpy/tests {posargs} usedevelop = False [testenv:demo]