Merge remote-tracking branch 'odoo/7.0' into 7.0
[odoo/odoo.git] / .coveragerc
1 # Config file .coveragerc
2 # adapt the include for your project
3
4 [report]
5 include =
6     */OCA/OCB/addons/*
7     */OCA/OCB/openerp/*
8
9 omit =
10     */tests/*
11     *__init__.py
12
13 # Regexes for lines to exclude from consideration
14 exclude_lines =
15     # Have to re-enable the standard pragma
16     pragma: no cover
17
18     # Don't complain about null context checking
19     if context is None: