https://github.com/opencv/cvat
Raw File
Tip revision: b6bea11c8b5a98a379ca440dac655c6044be8143 authored by Nikita Manovich on 03 August 2020, 13:33:21 UTC
Update CHANGELOG.md (beta release)
Tip revision: b6bea11
.coveragerc
[run]
branch = true
# relative_files = true # does not work?

source =
    datumaro/datumaro/
    cvat/apps/
    utils/cli/

omit =
    datumaro/datumaro/__main__.py
    datumaro/datumaro/version.py
    cvat/settings/*
    */tests/*
    */test_*
    */_test_*
    */migrations/*

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

    # Don't complain about missing debug-only code:
    def __repr__
    if\s+[\w\.()]+\.isEnabledFor\(log\.DEBUG\):

    # Don't complain if tests don't hit defensive assertion code:
    raise AssertionError
    raise NotImplementedError

    # Don't complain if non-runnable code isn't run:
    if 0:
    if __name__ == .__main__.:

# don't fail on the code that can be found
ignore_errors = true

skip_empty = true
back to top