You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
307 B
16 lines
307 B
# Config file .coveragerc
|
|
|
|
[report]
|
|
include =
|
|
*/OCA/web/*
|
|
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:
|