Added a # noqa next to the import to fix pep8. Change-Id: Ie53b1c7d9123c486e2be170350ab89967cd35bde Closes-Bug: #1276642
23 lines
352 B
INI
23 lines
352 B
INI
[tox]
|
|
envlist = py27,pep8
|
|
|
|
[testenv]
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
deps =
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = flake8
|
|
|
|
[flake8]
|
|
show-source = true
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|