tox: Use python -m to start pylint.

This makes it also work on Windows, where bin/ is called Scripts/.
This commit is contained in:
Florian Bruhin 2015-06-10 18:33:37 +02:00
parent 67473c6db1
commit 5a8b7910e0

View File

@ -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]