aboutsummaryrefslogtreecommitdiffstats
path: root/tools/cover.sh
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2018-06-28 16:16:29 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-06-28 16:16:29 +0000
commit70ea01b882a5ff61a36f8927d64d1bf3b9446838 (patch)
treeb9dad4cae41701281d22a46e5d8b4a74ec13f0c3 /tools/cover.sh
parent441d5f55a6e2e155d01d4b396678d0d09bfb8413 (diff)
parentbb31e6c8221b854041a668ddca438444fe97d212 (diff)
Merge "Stop running tests from tests/unit" into stable/fraser
Diffstat (limited to 'tools/cover.sh')
-rw-r--r--tools/cover.sh11
1 files changed, 3 insertions, 8 deletions
diff --git a/tools/cover.sh b/tools/cover.sh
index c6e928d1a..4e54a64b7 100644
--- a/tools/cover.sh
+++ b/tools/cover.sh
@@ -44,14 +44,12 @@ run_coverage_test() {
baseline_report=$(mktemp -t yardstick_coverageXXXXXXX)
find . -type f -name "*.pyc" -delete
+ coverage erase
- # Temporarily run tests from two directories, until all tests have moved
- coverage run -p -m unittest discover ./tests/unit
coverage run -p -m unittest discover ./yardstick/tests/unit
coverage combine
- # Temporarily omit yardstick/tests from the report
- coverage report --omit=yardstick/tests/*/* > ${baseline_report}
+ coverage report > ${baseline_report}
coverage erase
# debug awk
@@ -72,13 +70,10 @@ run_coverage_test() {
find . -type f -name "*.pyc" -delete
- # Temporarily run tests from two directories, until all tests have moved
- coverage run -p -m unittest discover ./tests/unit
coverage run -p -m unittest discover ./yardstick/tests/unit
coverage combine
- # Temporarily omit yardstick/tests from the report
- coverage report --omit=yardstick/tests/*/* > ${current_report}
+ coverage report > ${current_report}
coverage erase
rm -rf cover-$PY_VER