Add a new tox env for linting, currently running pylint,
and the pylint config for python3.
This commit is contained in:
parent
8ef9c4d839
commit
de9ee28516
19
tox.ini
19
tox.ini
|
@ -26,6 +26,14 @@ commands =
|
||||||
flake8 pybitmessage --count --select=E9,F63,F7,F82 \
|
flake8 pybitmessage --count --select=E9,F63,F7,F82 \
|
||||||
--show-source --statistics
|
--show-source --statistics
|
||||||
|
|
||||||
|
[testenv:lint]
|
||||||
|
skip_install = true
|
||||||
|
basepython = python3
|
||||||
|
deps =
|
||||||
|
-rrequirements.txt
|
||||||
|
pylint
|
||||||
|
commands = pylint --rcfile=tox.ini --exit-zero pybitmessage
|
||||||
|
|
||||||
[testenv:py27]
|
[testenv:py27]
|
||||||
sitepackages = true
|
sitepackages = true
|
||||||
|
|
||||||
|
@ -65,3 +73,14 @@ omit =
|
||||||
|
|
||||||
[coverage:report]
|
[coverage:report]
|
||||||
ignore_errors = true
|
ignore_errors = true
|
||||||
|
|
||||||
|
[pylint.main]
|
||||||
|
disable =
|
||||||
|
invalid-name,consider-using-f-string,fixme,raise-missing-from,
|
||||||
|
super-with-arguments,unnecessary-pass,unknown-option-value,
|
||||||
|
unspecified-encoding,useless-object-inheritance,useless-option-value
|
||||||
|
ignore = bitmessagecurses,bitmessagekivy,bitmessageqt,messagetypes,mockbm,
|
||||||
|
network,plugins,umsgpack,bitmessagecli.py
|
||||||
|
|
||||||
|
max-args = 8
|
||||||
|
max-attributes = 8
|
||||||
|
|
Reference in New Issue
Block a user