From 4fcb2feced1557f299910518c889fab6085d759b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 26 Oct 2015 18:51:41 +0100 Subject: [PATCH] tox: Add a pylint-tip testenv. --- tox.ini | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tox.ini b/tox.ini index 8bcc51022..8fe2813cb 100644 --- a/tox.ini +++ b/tox.ini @@ -101,6 +101,22 @@ commands = {envpython} -m pylint scripts qutebrowser --rcfile=.pylintrc --output-format=colorized --reports=no --expected-line-ending-format=LF {envpython} scripts/dev/run_pylint_on_tests.py --rcfile=.pylintrc --output-format=colorized --reports=no --expected-line-ending-format=LF +[testenv:pylint-tip] +basepython = python3 +skip_install = true +setenv = {[testenv:pylint]setenv} +passenv = {[testenv:pylint]passenv} +deps = + {[testenv]deps} + {[testenv:misc]deps} + hg+https://bitbucket.org/logilab/astroid + hg+https://bitbucket.org/logilab/pylint + six==1.10.0 +commands = + {envpython} scripts/link_pyqt.py --tox {envdir} + {envpython} -m pylint scripts qutebrowser --rcfile=.pylintrc --output-format=colorized --reports=no --expected-line-ending-format=LF + {envpython} scripts/dev/run_pylint_on_tests.py --rcfile=.pylintrc --output-format=colorized --reports=no --expected-line-ending-format=LF + [testenv:pep257] basepython = python3 skip_install = true