From 79c984d500307e2717d02fc9660b59b3f0bb6af1 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Thu, 10 Jul 2014 07:54:40 -0400 Subject: [PATCH] Add coverage file --- .coveragerc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 000000000..36c5468cb --- /dev/null +++ b/.coveragerc @@ -0,0 +1,15 @@ +[report] +include = + */account-financial-tools/* + +omit = + */tests/* + *__init__.py + +# Regexes for lines to exclude from consideration +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + + # Don't complain about null context checking + if context is None: