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.

18 lines
368 B

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