aboutsummaryrefslogtreecommitdiffstats
path: root/.coveragerc
diff options
context:
space:
mode:
authorjwang5 <jing.wang5@huawei.com>2017-09-12 14:39:31 -0500
committerjwang5 <jing.wang5@huawei.com>2017-09-12 14:39:52 -0500
commita82cff95c9a3a744ce8a18e26daa9f4095edd197 (patch)
tree8f8559892179d253b649b931df7e31d3f1d2085c /.coveragerc
parent2a18e2ea0d76e1a04cc67ed4aa3d33022ffa1b44 (diff)
support test coverage in sonar report
Issue-Id: DCAEGEN2-60 Change-Id: I736b46719414519f7ea41a64022f2312b8c305d3 Signed-off-by: jwang5 <jing.wang5@huawei.com>
Diffstat (limited to '.coveragerc')
-rw-r--r--.coveragerc29
1 files changed, 29 insertions, 0 deletions
diff --git a/.coveragerc b/.coveragerc
new file mode 100644
index 0000000..fdedea1
--- /dev/null
+++ b/.coveragerc
@@ -0,0 +1,29 @@
+# .coveragerc to control coverage.py
+[run]
+branch = True
+cover_pylib = False
+include = */config_binding_service/*.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
+
+[xml]
+output = coverage-reports/coverage-configbinding.xml
+