summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-04-25 07:09:13 +0000
committerGerrit Code Review <review@openstack.org>2012-04-25 07:09:13 +0000
commit9bd0504bd341a07e4a3649c7540036c03280984c (patch)
tree333b3394e606251a67d6d7b447445c9468446684
parentda834cf8aee734837e873b5a8bd78ff40be15caa (diff)
parentbcb53dfc6a149f94b4509ce90f89120b526f5582 (diff)
Merge "Scope coverage report generation to nova module."
-rw-r--r--.gitignore1
-rw-r--r--Authors1
-rwxr-xr-xrun_tests.sh2
3 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 5738efbd6..32a894c80 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,3 +18,4 @@ tools/conf/nova.conf*
cover/*
dist/*
.coverage
+covhtml
diff --git a/Authors b/Authors
index e7b82281d..c21276728 100644
--- a/Authors
+++ b/Authors
@@ -160,6 +160,7 @@ Paul McMillan <paul.mcmillan@nebula.com>
Paul Voccio <paul@openstack.org>
Peng Yong <ppyy@pubyun.com>
Philip Knouff <philip.knouff@mailtrust.com>
+Renier Morales <renierm@us.ibm.com>
Renuka Apte <renuka.apte@citrix.com>
Ricardo Carrillo Cruz <emaildericky@gmail.com>
Rick Clark <rick@openstack.org>
diff --git a/run_tests.sh b/run_tests.sh
index 62327ad23..31b707449 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -171,5 +171,5 @@ fi
if [ $coverage -eq 1 ]; then
echo "Generating coverage report in covhtml/"
- ${wrapper} coverage html -d covhtml -i
+ ${wrapper} coverage html --include=nova/* -d covhtml -i
fi