# .coveragerc to control coverage.py
[run]
branch = True
omit =
    src/flac/version.py

source =
    src/flac
    tests/flac_tests


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

    # testing assertions usually used with exceptions
    assert False

    # patterns for running cli
    cli_entry()


[html]
directory = tmp/coverage-html
