From 53a615a9507265e133e8f85714f5039eeae1f10d Mon Sep 17 00:00:00 2001 From: kali Date: Fri, 30 Nov 2012 01:16:32 +0900 Subject: exclude tests from coverage report also added some rules for exclusion in .coveragerc --- .coveragerc | 23 +++++++++++++++++++++++ .gitignore | 1 + run_tests.sh | 7 ++++--- 3 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..bcf38d0f --- /dev/null +++ b/.coveragerc @@ -0,0 +1,23 @@ +# .coveragerc to control coverage.py +[run] +branch = True + +[report] +# Regexes for lines to exclude from consideration +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + + # Don't complain about missing debug-only code: + def __repr__ + if self\.debug + + # Don't complain if tests don't hit defensive assertion code: + raise AssertionError + raise NotImplementedError + + # Don't complain if non-runnable code isn't run: + if 0: + if __name__ == .__main__.: + +ignore_errors = True diff --git a/.gitignore b/.gitignore index c577e14f..3a961a9c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.swo *.pyc .* +!.coveragerc bin/ build/ core diff --git a/run_tests.sh b/run_tests.sh index 6505dd54..a0f0b423 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -132,9 +132,10 @@ if [ -z "$noseargs" ]; then fi function run_coverage { - # XXX not working? getting 3rd party modules - coverage_opts="--include `pwd`/src/leap/*,`pwd`/src/leap/eip/*" - ${wrapper} coverage html -d docs/covhtml -i $coverage_opts + 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" } -- cgit v1.2.3