Skip to content

Commit

Permalink
CI: Do not ignore Flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lxp committed Oct 28, 2022
1 parent d7864f7 commit 81f1042
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-python3-freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
su runner -c 'check-manifest --ignore=Release.md .'
# Run flake
flake8 --exclude=build,venv --ignore= --max-line-length=200 --max-complexity=75 --show-source --statistics . || true
flake8 --exclude=build,venv --ignore= --max-line-length=200 --max-complexity=75 --show-source --statistics .
# Check distribution
python setup.py sdist bdist_wheel
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci-python3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ jobs:
run: check-manifest --ignore=Release.md .

- name: Run flake
continue-on-error: true
run: flake8 --exclude=build,venv --ignore= --max-line-length=200 --max-complexity=75 --show-source --statistics .

- name: Check distribution
Expand Down

0 comments on commit 81f1042

Please sign in to comment.