tox: Use python -m pep257 for pep257.

This commit is contained in:
Florian Bruhin 2015-03-26 10:59:25 +01:00
parent a1df3194ff
commit b409517777

View File

@ -55,7 +55,7 @@ deps = pep257==0.5.0
# D102: Docstring missing, will be handled by others
# D209: Blank line before closing """ (removed from PEP257)
# D402: First line should not be function's signature (false-positives)
commands = {envdir}/bin/pep257 scripts qutebrowser --ignore=D102,D209,D402 '--match=(?!resources|test_content_disposition).*\.py'
commands = {envpython} -m pep257 scripts qutebrowser --ignore=D102,D209,D402 '--match=(?!resources|test_content_disposition).*\.py'
[testenv:flake8]
deps =