tox.ini: keep a single `pylint` environment (warnings + errors)
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 27 Jul 2020 21:00:01 +0000 (17:00 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 29 Jul 2020 13:33:56 +0000 (09:33 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
tox.ini

diff --git a/tox.ini b/tox.ini
index 7fcd5c5413d10603ea3e96a36154903b4c9b77a1..9ffd60ef4fb33c83d8e2f863d9e19c7c08f9e6b5 100644 (file)
--- 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
This page took 0.023703 seconds and 4 git commands to generate.