Add pylint Tox environment

Change-Id: If0b632e909a115f6af1a7fe7aef3a29f969c8100
This commit is contained in:
Federico Ressi 2020-05-15 13:20:04 +02:00
parent d6f70f732c
commit 48795f0a47
1 changed files with 9 additions and 0 deletions

View File

@ -76,6 +76,15 @@ commands =
flake8 --max-complexity 10
[testenv:pylint]
basepython = {[testenv:pep8]basepython}
deps = {[testenv:pep8]deps}
envdir = {toxworkdir}/pep8
commands =
pylint -j0 --max-line-length=80 -E -e W,E \
-d unused-import,broad-except,fixme tobiko
[testenv:linters]
basepython = {[testenv:pep8]basepython}