mirror of https://github.com/OCA/web.git
20 lines
344 B
INI
20 lines
344 B
INI
# Config file .coveragerc
|
|
|
|
[report]
|
|
omit =
|
|
/usr/*
|
|
*/bin/*
|
|
*/lib/*
|
|
*/odoo/*
|
|
*/openerp/*
|
|
*/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:
|