Codebase list podcastparser / 777dd938-c42d-4d84-8512-5da392cf1b2b/main .coveragerc
777dd938-c42d-4d84-8512-5da392cf1b2b/main

Tree @777dd938-c42d-4d84-8512-5da392cf1b2b/main (Download .tar.gz)

.coveragerc @777dd938-c42d-4d84-8512-5da392cf1b2b/mainraw · history · blame

# .coveragerc to control coverage.py
[run]
branch = True

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # No need to test __repr__
    def __repr__

    # Python 2/3 compatibility
    except ImportError