Skip to content

Commit eaf0c6d

Browse files
authored
Add config for pylint, add lint task to CI
Edit the config file at .github/workflows to ignore beauty standards since most code is auto generated. Remove six.PY3 statements since we only care about Python 3. The pylint job now runs in 2 minutes and returns no errors.
1 parent cf53e78 commit eaf0c6d

File tree

5 files changed

+443
-5
lines changed

5 files changed

+443
-5
lines changed

.github/workflows/pytest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ jobs:
2323
- name: Test with pytest
2424
run: |
2525
pytest
26+
- name: Analysing the code with pylint
27+
run: |
28+
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)