From a0f2089c56bd2a0de6717429d3a4b2709fda74c8 Mon Sep 17 00:00:00 2001 From: Kevin_Zheng Date: Wed, 11 Jan 2017 10:23:44 +0800 Subject: Enable coverage report in console output The current coverage test job doesn't provide any result to developer, we could enable the coverage report in console output to let the developers know the current coverage status when run coverage test job. Change-Id: Icef8c3b42f087a20c48b5308185f6be8c8f5240d --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0b67fa0..7e1eb4d 100644 --- a/tox.ini +++ b/tox.ini @@ -42,7 +42,9 @@ setenv = passenv = OS_* [testenv:cover] -commands = python setup.py testr --coverage --testr-args='{posargs}' +commands = + python setup.py testr --coverage --testr-args='{posargs}' + coverage report [testenv:docs] commands= -- cgit v1.2.1