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.

19 lines
344 B

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