.coveragerc 479 B

1234567891011121314151617181920212223
  1. # .coveragerc to control coverage.py
  2. [run]
  3. branch = True
  4. source = radicale
  5. [report]
  6. # Regexes for lines to exclude from consideration
  7. exclude_lines =
  8. # Have to re-enable the standard pragma
  9. pragma: no cover
  10. # Don't complain if tests don't hit defensive assertion code:
  11. raise AssertionError
  12. raise NotImplementedError
  13. # Don't complain if non-runnable code isn't run:
  14. if __name__ == .__main__.:
  15. omit =
  16. tests/*
  17. */tests/*
  18. ignore_errors = True