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.

16 lines
307 B

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