.coveragerc 642 B

123456789101112131415161718192021222324252627282930313233
  1. [run]
  2. branch = True
  3. source =
  4. distro_tracker
  5. django_email_accounts
  6. omit =
  7. */tests/*
  8. */tests.py
  9. distro_tracker/project/*
  10. [report]
  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 missing debug-only code:
  16. def __repr__
  17. if self\.debug
  18. # Don't complain if tests don't hit defensive assertion code:
  19. raise AssertionError
  20. raise NotImplementedError
  21. # Don't complain if non-runnable code isn't run:
  22. if 0:
  23. if __name__ == .__main__.:
  24. ignore_errors = True
  25. [html]
  26. directory = coverage.html