Enable coverage report in console output

The current coverage test job doesn't provide any result
to developer, we could endble the coverage report in
console output to let the developers know the current
coverage status when run coverage test job.

Change-Id: Id6f884ca8dfcc9dfa01f7b827786f4fa41b461a4
This commit is contained in:
Kevin_Zheng 2017-01-11 10:16:59 +08:00
parent 1fdc89d0ce
commit 95f1f0ffd8
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ commands = {toxinidir}/tools/generate_config_file_samples.sh
commands = {posargs}
[testenv:cover]
commands = python setup.py testr --coverage --testr-args='{posargs}'
commands =
python setup.py testr --coverage --testr-args='{posargs}'
coverage report
[testenv:docs]
deps =