e6321ef3c3
Updated pep8 version requirement to 1.3.3 Fixed E502 errors All ignores are to be removed in the next sequence of patches Change-Id: I71c013061fb88d7b8b31cfa3b83498999455d8db
19 lines
548 B
INI
19 lines
548 B
INI
[tox]
|
|
envlist = pep8
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
NOSE_WITH_OPENSTACK=1
|
|
NOSE_OPENSTACK_COLOR=1
|
|
NOSE_OPENSTACK_RED=15
|
|
NOSE_OPENSTACK_YELLOW=3
|
|
NOSE_OPENSTACK_SHOW_ELAPSED=1
|
|
NOSE_OPENSTACK_STDOUT=1
|
|
deps = -r{toxinidir}/tools/pip-requires
|
|
-r{toxinidir}/tools/test-requires
|
|
commands = nosetests {posargs}
|
|
|
|
[testenv:pep8]
|
|
deps = pep8==1.3.3
|
|
commands = pep8 --ignore=E121,E122,E123,E124,E125,E126,E127,E128,E711 --repeat --show-source --exclude=.venv,.tox,dist,doc,openstack,kong .
|