diff --git a/bandit.yml b/bandit.yml new file mode 100644 index 000000000..fec715d85 --- /dev/null +++ b/bandit.yml @@ -0,0 +1,7 @@ +# Do not check for use of 'assert' statements (which are standard in unit tests) +# See https://bandit.readthedocs.io/en/latest/plugins/b101_assert_used.html +# +# NOTE: ideally, we would like to only skip this check in our unit tests, but +# we do not know if this is possible. +skips: + - B101 # Ignore assert statements