From: Philippe Proulx Date: Mon, 27 Jul 2020 21:00:01 +0000 (-0400) Subject: tox.ini: keep a single `pylint` environment (warnings + errors) X-Git-Tag: v3.0.0~165 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c51a558f9dfeed5bfac700b9c1037669bd2de714;p=barectf.git tox.ini: keep a single `pylint` environment (warnings + errors) Signed-off-by: Philippe Proulx --- diff --git a/tox.ini b/tox.ini index 7fcd5c5..9ffd60e 100644 --- a/tox.ini +++ b/tox.ini @@ -26,20 +26,8 @@ ignore = E123,E125,E501 builtins = _ exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,templates.py -[testenv:pylint-errors] +[testenv:pylint] deps = pylint >= 1.6 commands = poetry install -v - poetry run pylint -f colorized -E barectf - -[testenv:pylint-warnings] -deps = pylint >= 1.6 -commands = - poetry install -v - poetry run pylint -f colorized -d all -e W -r n barectf - -[testenv:pylint-full] -deps = pylint >= 1.6 -commands = - poetry install -v - poetry run pylint -f colorized --disable=all -e R,E,W barectf + poetry run pylint -f colorized -d all -e E,W -d W0212,W1618,W0622,W0201,W0703 barectf