Stop Bandit from trying to audit the built Rust targets. We're
already auditing with Cargo Audit!
This commit is contained in:
Herbert Wolverson 2024-06-14 14:22:15 -05:00
parent 33a08e95be
commit d09c0d432f

View File

@ -11,7 +11,7 @@ jobs:
- run: pip install --upgrade pip wheel
- run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear
flake8-comprehensions isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B105,B110,B404,B602,B603,B605 .
- run: bandit --recursive --skip B105,B110,B404,B602,B603,B605 -x ./rust/target/ .
- run: black --check . || true
# - run: codespell --skip="./.*,./old" # --ignore-words-list=""
- run: flake8 . --count --exclude="./.*,./old/" --select=E9,F63,F7,F82 --show-source --statistics