From 5a8b7910e0ccfd52305e57d43f78f04da8e9b1af Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 10 Jun 2015 18:33:37 +0200 Subject: [PATCH] tox: Use python -m to start pylint. This makes it also work on Windows, where bin/ is called Scripts/. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8085ae2ea..99690987d 100644 --- a/tox.ini +++ b/tox.ini @@ -60,7 +60,7 @@ deps = six==1.9.0 commands = {envpython} scripts/link_pyqt.py --tox {envdir} - {envdir}/bin/pylint scripts qutebrowser --rcfile=.pylintrc --output-format=colorized --reports=no --expected-line-ending-format=LF + {envpython} -m pylint scripts qutebrowser --rcfile=.pylintrc --output-format=colorized --reports=no --expected-line-ending-format=LF {envpython} scripts/run_pylint_on_tests.py --rcfile=.pylintrc --output-format=colorized --reports=no --expected-line-ending-format=LF [testenv:pep257]