# Config file .coveragerc

[report]
include =
    pylint_oca/*

omit =
    */test_repo/*
    *__init__.py
    *__openerp__.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:
    # Don't complain about self-execute
    if __name__ == '__main__':
