f2b765abf2
The directory openstack/common doesn't exist any more, so remove it from flake8 exclude list. Change-Id: I59e0b4c4c3ca5345260d6c0f2ef3a3a27cc3535b
49 lines
1.2 KiB
INI
49 lines
1.2 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py34,py27,pep8,pypy
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
LANGUAGE=en_US
|
|
# .testr.conf uses TESTS_DIR
|
|
TESTS_DIR=./ironicclient/tests/unit
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
ostestr {posargs}
|
|
|
|
[testenv:releasenotes]
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8 {posargs}
|
|
doc8 doc/source CONTRIBUTING.rst README.rst
|
|
|
|
[testenv:cover]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
LANGUAGE=en_US
|
|
commands =
|
|
coverage erase
|
|
python setup.py testr --coverage --testr-args='{posargs}'
|
|
coverage combine
|
|
coverage html --include='ironicclient/*' --omit='ironicclient/tests/functional/*' -d covhtml -i
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:functional]
|
|
setenv = TESTS_DIR=./ironicclient/tests/functional
|
|
LANGUAGE=en_US
|
|
|
|
[flake8]
|
|
ignore =
|
|
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools
|
|
|
|
[hacking]
|
|
import_exceptions = testtools.matchers
|