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

« back to all changes in this revision

Viewing changes to .coveragerc

  • Committer: Pedro M. Baeza
  • Date: 2014-08-13 18:43:07 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: git-v1:3848cd468dbb402e0447c0d7eac47f9f8b7494e4
6.1 metafiles

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Config file .coveragerc
 
2
# adapt the include for your project
 
3
 
 
4
[report]
 
5
include =
 
6
    */OCA/account-invoicing/*
 
7
 
 
8
omit =
 
9
    */tests/*
 
10
    *__init__.py
 
11
 
 
12
# Regexes for lines to exclude from consideration
 
13
exclude_lines =
 
14
    # Have to re-enable the standard pragma
 
15
    pragma: no cover
 
16
 
 
17
    # Don't complain about null context checking
 
18
    if context is None: