Fix coverage so that it works for this repo
PBR provides test and testr entrypoints, the latter of which is not recommended as its serviced directly by testr. Switch to test in tox.ini and pass an option to PBR indicating the correct package name to use when calling coverage. Also update .coveragerc with the corrected source path, and stop omitting the tests themselves (after all, tests should cover themselves!). Change-Id: I04b1a5393979c5d82a794d35189743f688bdfdd8
This commit is contained in:
parent
b1326d4490
commit
3562f7cc2e
@ -1,7 +1,7 @@
|
||||
[run]
|
||||
branch = True
|
||||
source = heat-translator
|
||||
omit = heat-translator/tests/*,heat-translator/openstack/*
|
||||
source = translator
|
||||
omit = translator/openstack/*
|
||||
|
||||
[report]
|
||||
ignore-errors = True
|
||||
ignore-errors = True
|
||||
|
4
tox.ini
4
tox.ini
@ -10,7 +10,7 @@ setenv =
|
||||
VIRTUAL_ENV={envdir}
|
||||
deps = -r{toxinidir}/requirements.txt
|
||||
-r{toxinidir}/test-requirements.txt
|
||||
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
||||
commands = python setup.py test --slowest --testr-args='{posargs}'
|
||||
|
||||
[testenv:pep8]
|
||||
commands = flake8
|
||||
@ -19,7 +19,7 @@ commands = flake8
|
||||
commands = {posargs}
|
||||
|
||||
[testenv:cover]
|
||||
commands = python setup.py testr --coverage --testr-args='{posargs}'
|
||||
commands = python setup.py test --coverage --coverage-package-name=translator --testr-args='{posargs}'
|
||||
|
||||
[testenv:docs]
|
||||
commands = python setup.py build_sphinx
|
||||
|
Loading…
Reference in New Issue
Block a user