Skip to content

Commit

Permalink
build(check): ignore some errors
Browse files Browse the repository at this point in the history
  • Loading branch information
breakthewall committed Jun 21, 2022
1 parent 5bb996c commit 9c6a09e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- name: Install flake8
run: pip install flake8
- name: Lint with flake8
run: flake8 --exclude setup.py .
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 --exclude setup.py . --count --select=E9,F63,F7,F82 --ignore=E272,E501,E266,E241,E226,E251,E303,E221 --exit-zero --max-complexity=10 --max-line-length=127 --show-source --statistics
# continue-on-error: true
- name: Install bandit
run: pip install bandit
Expand Down

0 comments on commit 9c6a09e

Please sign in to comment.