[run]
omit = .tox/*
branch = True

[report]
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain about missing debug-only code:
    def __repr__

    # Don't complain if tests don't hit defensive assertion code:
    raise AssertionError
    raise NotImplementedError

    # Don't complain if non-runnable code isn't run:
    if 0:
    if __name__ == .__main__.:

    # don't try to cover abstracts
    @abc.abstractmethod
    @abc.abstractproperty
    
    # don't try to cover special properties
    @properties.NonDataProperty

show_missing = True
ignore_errors = True

