cinder-specs/tox.ini
xianming mao b4baff9915 Drop H803 in flake8 ignore list and useless directory openstack/common
In hacking >=0.10.0,there is not H803,and in this project there have
not directory openstack/common,so we should delete them to improve
performance!

Change-Id: Ie39175fa16fa488d3e6066df25ebfcaa0a0fc4e2
2016-08-10 19:43:30 +08:00

33 lines
698 B
INI

[tox]
minversion = 1.6
envlist = docs,py27,pep8
skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:pep8]
commands = flake8
[testenv:venv]
commands = {posargs}
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'
[flake8]
# H803 skipped on purpose per list discussion.
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
ignore = E123,E125
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build