summaryrefslogtreecommitdiffstats
path: root/docker/.coveragerc
diff options
context:
space:
mode:
authorMichael Hwang <mhwang@research.att.com>2017-09-25 12:13:10 -0400
committerMichael Hwang <mhwang@research.att.com>2017-09-25 13:20:57 -0400
commitf5a7afab7e70ae6736c4c3c6abb53f70b2b45a64 (patch)
tree730eeb48dc694bd39c51c8a0b6b242ae937407f9 /docker/.coveragerc
parent216857392825a73a60c6becabfa0204d09b6372f (diff)
Toxify for docker and relationship
Issue-Id: DCAEGEN2-60 Change-Id: Idaacf7239a54a21d45d77731cae13e5115b68f02 Signed-off-by: Michael Hwang <mhwang@research.att.com>
Diffstat (limited to 'docker/.coveragerc')
-rw-r--r--docker/.coveragerc21
1 files changed, 21 insertions, 0 deletions
diff --git a/docker/.coveragerc b/docker/.coveragerc
new file mode 100644
index 0000000..088c2da
--- /dev/null
+++ b/docker/.coveragerc
@@ -0,0 +1,21 @@
+# .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__.: