Updating tox config for pylint,flake8 and pep257

This commit is contained in:
Roman Mogilatov 2015-03-18 16:09:22 +02:00
parent 83f9845f59
commit e07119c914

View File

@ -27,21 +27,21 @@ commands=
coverage run --rcfile=./.coveragerc -m unittest2 discover tests []
coveralls
[pylint]
[testenv:pylint]
basepython=python2.7
deps=
pylint
commands=
pylint -f colorized --rcfile=./.pylintrc objects
[flake8]
[testenv:flake8]
basepython=python2.7
deps=
flake8
commands=
flake8 --max-complexity=8 objects
[pep257]
[testenv:pep257]
basepython=python2.7
deps=
pep257