Skip to content

Commit 4e2d241

Browse files
committed
Add lint with pylint
1 parent e48f1b8 commit 4e2d241

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3030
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3131
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
32+
- name: Lint with pylint
33+
run: |
34+
pip install pylint
35+
pylint --disable=W0511,R0205 msgcheck
36+
pylint --disable=W0511,R0205 tests
3237
- name: Test with pytest
3338
run: |
3439
pip install pytest

0 commit comments

Comments
 (0)