From 81f1042aca4b1db63d38565dab542e2a7c223c06 Mon Sep 17 00:00:00 2001 From: David Gnedt Date: Fri, 28 Oct 2022 23:46:10 +0200 Subject: [PATCH] CI: Do not ignore Flake8 errors --- .github/workflows/ci-python3-freebsd.yml | 2 +- .github/workflows/ci-python3.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci-python3-freebsd.yml b/.github/workflows/ci-python3-freebsd.yml index f5dba0e..067fb9a 100644 --- a/.github/workflows/ci-python3-freebsd.yml +++ b/.github/workflows/ci-python3-freebsd.yml @@ -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 diff --git a/.github/workflows/ci-python3.yml b/.github/workflows/ci-python3.yml index 6f46b9a..ba0f48d 100644 --- a/.github/workflows/ci-python3.yml +++ b/.github/workflows/ci-python3.yml @@ -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