metacov.ini 771 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
  2. # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
  3. # Settings to use when using coverage.py to measure itself.
  4. [run]
  5. branch = true
  6. data_file = $COVERAGE_METAFILE
  7. parallel = true
  8. source =
  9. $COVERAGE_HOME/coverage
  10. $COVERAGE_HOME/tests
  11. [report]
  12. # We set a different pragma so our code won't be confused with test code.
  13. exclude_lines =
  14. # pragma: not covered
  15. # pragma: nested
  16. def __repr__
  17. raise AssertionError
  18. # pragma: debugging
  19. # pragma: only failure
  20. partial_branches =
  21. # pragma: part covered
  22. if env.TESTING:
  23. ignore_errors = true
  24. precision = 1
  25. [paths]
  26. source =
  27. .
  28. *\coverage\trunk
  29. */coverage/trunk
  30. *\coveragepy