Stephen-RA-King/pynball

View on GitHub
.coveragerc

Summary

Maintainability
Test Coverage
[report]
fail_under = 50

omit =
    docs/*
    tests/*

exclude_lines =
    pragma: no cover

    # Generally only debug code uses this
    def __repr__

    # If a debug setting is set, skip testing
    if self\.debug:
    if settings.DEBUG

    # Don't worry about safety checks and expected errors
    raise AssertionError
    raise NotImplementedError

    # Do not complain about code that will never run
    if 0:
    if __name__ == .__main__.:
    @abc.abstractmethod

[run]
branch = True
data_file = cache/.coverage
omit =
    docs/*
    tests/*