File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,9 @@ jobs:
179179 fail-fast : false
180180 matrix :
181181 task :
182+ - name : pylint
183+ tox : pylint
184+ continue_on_error : true
182185 - name : flake8
183186 tox : flake8
184187 continue_on_error : true
Original file line number Diff line number Diff line change 22flake8 >= 2.6.0
33flake8-docstrings >= 0.2.8
44pyflakes >= 1.2.3
5- pylint
5+ pylint >=2.13.3
Original file line number Diff line number Diff line change @@ -18,6 +18,16 @@ passenv =
1818setenv =
1919 with_gmp =no
2020
21+ [testenv:pylint]
22+ deps =
23+ -r requirements-tests.txt
24+ -r requirements-checks.txt
25+ -r requirements-docs.txt
26+ -r requirements.txt
27+ ignore_errors = true
28+ commands =
29+ pylint doc examples pymodbus test
30+
2131[testenv:flake8]
2232deps = -r requirements-checks.txt
2333commands =
@@ -46,3 +56,6 @@ commands =
4656exclude = .tox
4757ignore = D211,D400,E731
4858max-line-length = 120
59+
60+ [pylint]
61+
You can’t perform that action at this time.
0 commit comments