Switch from pep8 to pycodestyle

This commit is contained in:
Daniel Quinn
2018-01-06 18:56:37 +00:00
parent 1af7152fa8
commit 60be15e260
2 changed files with 10 additions and 7 deletions

View File

@@ -5,15 +5,18 @@
[tox]
skipsdist = True
envlist = py34, py35, py36, pep8
envlist = py34, py35, py36, pycodestyle
[testenv]
commands = pytest
deps = -r{toxinidir}/../requirements.txt
[testenv:pep8]
commands=pep8
deps=pep8
[testenv:pycodestyle]
commands=pycodestyle
deps=pycodestyle
[pep8]
exclude=.tox,migrations,paperless/settings.py
[pycodestyle]
exclude=
.tox,
migrations,
paperless/settings.py