[run]

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    # per https://coverage.readthedocs.io/en/latest/config.html#syntax
    pragma: no cover

    # Don't complain about abstract methods, they aren't run
    @abstractmethod
    @abc.abstractmethod

omit =
    # The GREAT transformations.py. We don't need to test it here.
    # It has been tested everywhere.
    lisdf/utils/transformations.py
