separate environment to test codestyle as proposed by @sigmavirus24

This commit is contained in:
Pedro Rodrigues 2016-07-19 17:23:18 +01:00
parent 6238b59e72
commit 9c2c058ae5

View File

@ -3,7 +3,7 @@
[tox]
envlist = py26, py27, py35, pypy
envlist = py26, py27, py35, pypy, codestyle
[testenv]
@ -20,3 +20,9 @@ commands =
--verbose \
--doctest-modules \
{posargs:./httpie ./tests}
[testenv:codestyle]
deps = pycodestyle
commands =
pycodestyle \
--ignore=E241,E501