diff mbox

[2/4] tox: Remove lint target

Message ID 1477934162-1061-2-git-send-email-stephen@that.guru
State Rejected
Headers show

Commit Message

Stephen Finucane Oct. 31, 2016, 5:16 p.m. UTC
pylint doesn't work very well with Django, and this is broken.

Signed-off-by: Stephen Finucane <stephen@that.guru>
Cc: Daniel Axtens <dja@axtens.net>
---
 tox.ini | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)
diff mbox

Patch

diff --git a/tox.ini b/tox.ini
index 0836cd5..c700b54 100644
--- a/tox.ini
+++ b/tox.ini
@@ -32,16 +32,6 @@  commands = flake8 {posargs} patchwork patchwork/bin/pwclient
 ignore = E129, F405
 exclude = ./patchwork/migrations
 
-[testenv:lint]
-basepython = python2.7
-deps =
-    pylint
-    -r{toxinidir}/requirements-prod.txt
-commands = pylint patchwork --rcfile=pylint.rc
-
-[testenv:venv]
-commands = {posargs}
-
 [testenv:coverage]
 basepython = python2.7
 deps =
@@ -54,3 +44,6 @@  commands =
     coverage run --omit=*tox*,patchwork/tests/*.py,manage.py,patchwork/migrations/*.py \
          --branch {toxinidir}/manage.py test --noinput patchwork
     coverage report -m
+
+[testenv:venv]
+commands = {posargs}