aboutsummaryrefslogtreecommitdiffstats
path: root/.coveragerc
diff options
context:
space:
mode:
authorSastry Isukapalli <sastry@research.att.com>2018-03-02 00:10:29 -0500
committerDileep Ranganathan <dileep.ranganathan@intel.com>2018-03-07 05:04:45 -0800
commitb8bad9d2cc5168e55271929a6474184129f31ef2 (patch)
tree175c08e4c88ce758c600a16ce3f5ad75629b60b4 /.coveragerc
parentaa358e298d345da0582ad1ea3b496bb44650a4f1 (diff)
Adding SONAR coverage report support
Issue-ID: OPTFRA-102 Change-Id: I67552599ff49dff29f99578b83592dd8d2ced193 Signed-off-by: Sastry Isukapalli <sastry@research.att.com>
Diffstat (limited to '.coveragerc')
-rw-r--r--.coveragerc25
1 files changed, 25 insertions, 0 deletions
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