aboutsummaryrefslogtreecommitdiffstats
path: root/.coveragerc
diff options
context:
space:
mode:
authorAlex Shatov <alexs@att.com>2017-09-22 17:34:48 -0400
committerAlex Shatov <alexs@att.com>2017-09-22 17:34:48 -0400
commit9144f04afe7c56e762b6e4d0c28fd5726a3746ba (patch)
tree5c0fd072ec9c0fd2e3db663adf304f1a7c4842aa /.coveragerc
parenta5bfd6aed8b182416ef1cf0ce88dbc0b61d92fa0 (diff)
unit test and coverage with tox
usage on local run: tox -c tox-local.ini usage on ONAP run: tox Change-Id: Ic455f0f44f5b3bee92b60ea282851e72c3a12b7e Issue-Id: DCAEGEN2-62 Signed-off-by: Alex Shatov <alexs@att.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..ffa5826
--- /dev/null
+++ b/.coveragerc
@@ -0,0 +1,29 @@
+# .coveragerc to control coverage.py
+[run]
+branch = True
+cover_pylib = False
+# include = */policyhandler/*.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-policyhandler.xml
+