Make bandit a mandatory test

pull/173/head
Christian Clauss 2 years ago committed by GitHub
parent 76431bcfbd
commit 37be28078f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,7 +9,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 B101 . || true # B101 is assert statements
- run: bandit --recursive --skip B107,B108,B303,B304,B311,B312,B321,B401,B402,B404,B406,B504,B603 .
- run: black --check . || true
- run: codespell --ignore-words-list="lsat,ressources"
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics

Loading…
Cancel
Save