From a5da76099011ffa4a8baa59af6b37b692e4b267b Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Wed, 30 Jul 2014 10:39:28 +1000 Subject: [PATCH] Fix coverage report generation Change the command called by the cover tox environment so that the coverage generation works correctly. Change-Id: Ifded7b8b7ef93ff9bde876b7bc2b66fce9dc0357 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c2bf766..a856778 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,7 @@ commands = {posargs} commands = python setup.py build_sphinx [testenv:cover] -commands = python setup.py testr --coverage --testr-args='{posargs}' +commands = python setup.py test --coverage --coverage-package-name='os_cloud_config' --testr-args='{posargs}' [flake8] # H302 skipped on purpose per IRC discussion involving other TripleO projects.