From 8d0d4135ea5c1400f3b44f8c94522b35f1245ffa Mon Sep 17 00:00:00 2001 From: Drikus Roor Date: Wed, 12 Apr 2023 22:07:04 +0200 Subject: [PATCH] ci: Update flake8 command to ignore some issues. We can later gradually make it stricter until we have no errors anymore. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d3628bc..06d6ed64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: Lint with flake8 continue-on-error: true - run: flake8 scripts/ tests/ + run: flake8 scripts/ tests/ --select E303,W293,W291,W292,E305 - name: Run unittest tests with coverage run: |