-
Lukas Juhrich authored
I did this kind of on personal interest, since my emacs (using flake8) marks every violation (meaning: line >79 chars) red, which is pretty annoying. I personally think 90 is a realistic guideline.
Lukas Juhrich authoredI did this kind of on personal interest, since my emacs (using flake8) marks every violation (meaning: line >79 chars) red, which is pretty annoying. I personally think 90 is a realistic guideline.
tox.ini 189 B
[tox]
envlist = py27,py34,py35
[testenv]
deps=pytest
pytest-pep8
responses
mock
commands=py.test -v --pep8 mwclient tests
[flake8]
max-line-length=90
[pep8]
max-line-length=90