98c4f4dbea
Previously the coverage target ended up deleting the coverage data when the `coverage combine` command ran. This then caused the `coverage html` command to fail due to lack of data to report on. Thankfully the fix is simple because pbr is actually handlign all of this for us behind the scenes. All we need to do is run with the --coverage flag and make sure the .coveragerc reflects the desired inclusions and ommisions. Change-Id: Ide6c7639a19d961e4af27c2c59b036395e2af3ef
47 lines
1.0 KiB
INI
47 lines
1.0 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py35,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}'
|
|
|
|
[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
|