summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-07-05 14:35:55 -0300
committerTomás Touceda <chiiph@leap.se>2013-07-05 14:35:55 -0300
commit6a8a138f9cdcda483d713f6df43de7d660ec8867 (patch)
tree8e965ee4aeb6488a83184d9244e714ac36ce54b3 /run_tests.sh
parent57184883c7aa30475d37681d6b88ff0c699e1c7b (diff)
Improve coverage report
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh14
1 files changed, 2 insertions, 12 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 500cf53c..9f9262ba 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -64,7 +64,7 @@ done
# If enabled, tell nose to collect coverage data
if [ $coverage -eq 1 ]; then
- noseopts="$noseopts --with-coverage --cover-package=leap"
+ noseopts="$noseopts --with-coverage --cover-package=leap --cover-html --cover-html-dir=docs/covhtml/ --cover-erase"
fi
if [ $no_site_packages -eq 1 ]; then
@@ -153,18 +153,8 @@ if [ -z "$noseargs" ]; then
fi
fi
-function run_coverage {
- cov_opts="--include=`pwd`/src/leap/*" #,`pwd`/src/leap/eip/*"
- cov_opts="$cov_opts --omit=`pwd`/src/leap/gui/ui_*,`pwd`/src/leap/gui/*_rc.py*"
- #cov_opts="--omit=`pwd`/src/leap/base/tests/*,`pwd`/src/leap/eip/tests/*,`pwd`/src/leap/gui/tests/*"
- #cov_opts="$cov_opts,`pwd`/src/leap/util/tests/* "
- #cov_opts="$cov_opts --include=`pwd`/src/leap/*" #,`pwd`/src/leap/eip/*"
- ${wrapper} coverage html -d docs/covhtml -i $cov_opts
- echo "now point your browser at docs/covhtml/index.html"
-}
-
if [ $coverage -eq 1 ]; then
echo "Generating coverage report in docs/covhtml/"
- run_coverage
+ echo "now point your browser at docs/covhtml/index.html"
exit
fi