From 0a9354aeb0a526034688ca97de988f7b0aaabb72 Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Mon, 7 Jul 2014 19:40:14 +0200 Subject: [PATCH] add .coveragerc --- .coveragerc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 000000000..277f2a902 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,15 @@ +[report] +include = + */OCA/server-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: