From b8bad9d2cc5168e55271929a6474184129f31ef2 Mon Sep 17 00:00:00 2001 From: Sastry Isukapalli Date: Fri, 2 Mar 2018 00:10:29 -0500 Subject: Adding SONAR coverage report support Issue-ID: OPTFRA-102 Change-Id: I67552599ff49dff29f99578b83592dd8d2ced193 Signed-off-by: Sastry Isukapalli --- .coveragerc | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .coveragerc (limited to '.coveragerc') diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..a5afd52 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,25 @@ +# .coveragerc to control coverage.py +[run] +branch = True +cover_pylib = False +include = osdf/**/*.py + +[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 -- cgit 1.2.3-korg