
The openstack-tox-cover job expects a coverage report at the end. This patch updates the cover environment in tox.ini, bringing it in line with the other repos. This also adds stestr in test-requirements, which is needed by the new coverage env. Finally, removes the cloudbaseinit import from releasenotes. According to [1], a project shouldn't necessarely be installed in order to build its releasenotes. [1] http://lists.openstack.org/pipermail/openstack-dev/2017-November/124480.html Change-Id: I77dfe57f1190fc62f7bd19284e2c86d55bb1804a
54 lines
1.4 KiB
INI
54 lines
1.4 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py27,py33,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} -U --force-reinstall {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py testr --testr-args='{posargs}'
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:pylint]
|
|
commands = bash tools/lintstack.sh
|
|
|
|
[testenv:cover]
|
|
basepython = python2.7
|
|
setenv =
|
|
{[testenv]setenv}
|
|
PYTHON=coverage run --source cloudbaseinit --parallel-mode
|
|
commands =
|
|
stestr run --no-subunit-trace {posargs}
|
|
coverage combine
|
|
coverage report --fail-under=82 --skip-covered
|
|
coverage html -d cover
|
|
coverage xml -o cover/coverage.xml
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:releasenotes]
|
|
commands =
|
|
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[flake8]
|
|
# E125 is deliberately excluded. See https://github.com/jcrocholl/pep8/issues/126
|
|
# E251 Skipped due to https://github.com/jcrocholl/pep8/issues/301
|
|
|
|
ignore = E125,E251
|
|
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools
|
|
|
|
[hacking]
|