add flake8 to CI, skip remaining 4 flake8 issues (will be addressed later)

This commit is contained in:
Pavol Rusnak 2023-01-22 10:11:28 +00:00
parent 24fbb9ef5d
commit 0ff4c13346
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
2 changed files with 34 additions and 0 deletions

26
.github/workflows/flake8.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: flake8
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
poetry-version: ["1.3.1"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry ${{ matrix.poetry-version }}
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: make flake8

View file

@ -16,5 +16,13 @@ ignore =
E741,
# W503: line break before binary operator
W503,
# F821: undefined name - should be addressed in future PR
F821,
# E265 block comment should start with '# ' - should be addressed in future PR
E265,
# E266 too many leading '#' for block comment - should be addressed in future PR
E266,
# E722 do not use bare 'except' - should be addressed in future PR
E722,
# flake8-requirements import checks
I