Skip to content

Commit c9c3f12

Browse files
hannobgordonmessmer
authored andcommitted
Run pycodestyle and pyflakes in CI
1 parent d351c03 commit c9c3f12

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/runci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,13 @@ jobs:
1616
uses: actions/setup-python@v6
1717
with:
1818
python-version: ${{ matrix.python-version }}
19-
- name: Install pytest
19+
- name: Install test and linting tools
2020
run: |
21-
pip install pytest
21+
pip install pytest pycodestyle pyflakes
2222
- name: Run tests
2323
run: |
2424
pytest -v
25+
- name: Check Codingstyle
26+
run: |
27+
pycodestyle --ignore=E501,E722,W503,W504 . dropmsg pythonfilter pythonfilter-quarantine
28+
pyflakes . dropmsg pythonfilter pythonfilter-quarantine

0 commit comments

Comments
 (0)