1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Add more flake8 tests

This commit is contained in:
Christian Clauss
2022-06-13 12:57:55 +02:00
committed by GitHub
parent 6db6a615ed
commit 20d8dd7e1c

View File

@ -12,7 +12,7 @@ jobs:
- run: bandit --recursive --skip B404,B603,B605,B607 .
- run: black --check . || true
- run: codespell --ignore-words-list="WAN" || true # --skip="*.css,*.js,*.lock"
- run: flake8 --ignore=B001,E124,E128,E225,E251,E302,E722,F841,R502,R503,W291,W293,W605
- run: flake8 --ignore=E124,E128,E225,E251,E302,R502,R503,W291,W293,W605
--max-complexity=11 --max-line-length=265 --show-source --statistics .
- run: isort --check-only --profile black . || true
- run: pip install -r requirements.txt || pip install --editable . || pip install . || true