From 7700c6ca53e1e2f81ac272f0d3261fb519029618 Mon Sep 17 00:00:00 2001 From: Surya Prakash Singh Date: Thu, 15 Dec 2016 18:47:24 +0530 Subject: [PATCH] Cover environment for kolla Enabled the cover environment for kolla in tox Closes-bug: #1650269 Change-Id: I732058b07d951227e7011f6f1a3d84fed594cfa7 --- .gitignore | 2 ++ tox.ini | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index f0a575157b..2495270b77 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,8 @@ AUTHORS ChangeLog doc/build etc/kolla/kolla-build.conf +.coverage +cover/ # Files generated by Vagrant dev/vagrant/Vagrantfile.custom diff --git a/tox.ini b/tox.ini index c7e1f458fb..549c4894c8 100644 --- a/tox.ini +++ b/tox.ini @@ -21,6 +21,14 @@ commands = [testenv:debug] commands = oslo_debug_helper {posargs} +[testenv:cover] +setenv = VIRTUAL_ENV={envdir} + NOSE_WITH_COVERAGE=1 + NOSE_COVER_BRANCHES=1 + NOSE_COVER_HTML=1 + NOSE_COVER_HTML_DIR={toxinidir}/cover +commands = python setup.py testr --coverage --testr-args='{posargs}' + [testenv:pep8] commands = {toxinidir}/tools/run-bashate.sh