# Configuration for coverage.py
#
# File/path exclusions live in codecov.yml (`ignore`) — the single source of
# truth that gates PRs and the Codecov dashboard. This file only configures
# measurement and the line-level exclusions that coverage.py alone expresses.

[run]
branch = True
source = torch_concepts

[report]
exclude_lines =
    pragma: no cover
    def __repr__
    if self.debug:
    if settings.DEBUG
    raise AssertionError
    raise NotImplementedError
    if 0:
    if __name__ == .__main__.:
    if self.verbose:
show_missing = True