[run]
source = frostbound
omit =
    */tests/*
    */test_*
    */__pycache__/*
    */venv/*
    */.venv/*
    */site-packages/*
    */distutils/*
    */node_modules/*
    */.nox/*
    */.tox/*
    */migrations/*

[report]
precision = 2
show_missing = True
skip_covered = False
skip_empty = True
sort = Cover

# Regexes for lines to exclude from consideration
exclude_lines =
    pragma: no cover
    def __repr__
    raise NotImplementedError
    if TYPE_CHECKING:
    @overload
    pass

[html]
directory = htmlcov

[xml]
output = coverage.xml

[json]
output = coverage.json
pretty_print = True
