Add two more issues to ignore because they aren't useful:
* B501. We NEED to support self-signed certificates.
* B607. Partial paths are just fine. Absolute paths would make
  everything needlessly complicated.
This commit is contained in:
Herbert Wolverson 2024-06-14 14:26:58 -05:00
parent d09c0d432f
commit 3a7637d219

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 -x ./rust/target/ .
- run: bandit --recursive --skip B105,B110,B404,B602,B603,B605,B501,B607, -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