~product-core-editors/product-kitting/github-7.0

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Config file .coveragerc
# adapt the include for your project

[report]
include =
    */OCA/<YOUR_PROJECT_NAME_HERE>/*

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: