
This commit fixes the coverage job in tox. It relies on pbr to actually make the coverage calls before and after running the tests. However, by default pbr assumes the project name in setup.cfg is the same as the directory containing the source. However that isn't the case here. This commits corrects this by using the flag to pretend that package name is the same as the source dir. The pbr requirement is also updated to be >=0.8.1 because this is the min version required to use the option exploited by this patch. Change-Id: Icea30575538571fe842632901e994be3ac0bbc80
38 lines
1.1 KiB
INI
38 lines
1.1 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py34,py27,pypy,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
commands = python setup.py testr --coverage --coverage-package-name='tempest_lib' --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[flake8]
|
|
# H803 skipped on purpose per list discussion.
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
# H402 skipped because some docstrings aren't sentences
|
|
# E123 skipped because it is ignored by default in the default pep8
|
|
# E129 skipped because it is too limiting when combined with other rules
|
|
# H305 skipped because it is inconsistent between python versions
|
|
show-source = True
|
|
ignore = E123,E125,H803,H402,E123,E129,H305
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
|