~account-core-editors/account-invoicing/6.1-git

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/account-invoicing/*

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: