bandit --recursive --skip B108,B112,B404,B602 .

This commit is contained in:
Christian Clauss
2021-07-27 12:09:52 +02:00
committed by GitHub
parent 9931edccc4
commit 3f2058441a

View File

@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install bandit black codespell flake8 isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B101 . || true # B101 is assert statements
- run: black --check . || true
- run: bandit --recursive --skip B108,B112,B404,B602 .
- run: black --check .
- run: codespell || true # --ignore-words-list="" --skip=""
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- run: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --show-source --statistics