https://github.com/bashtage/arch
Raw File
Tip revision: 72acfb6548dddb31af10584dff3028d803bb2e68 authored by Kevin Sheppard on 05 February 2021, 12:27:18 UTC
Merge pull request #446 from bashtage/final-fix
Tip revision: 72acfb6
.coveragerc
# .coveragerc to control coverage.py
[run]
source = arch
branch = True
omit =
    */_version.py
    */compat/*
    */vendor/*
plugins = Cython.Coverage

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

    # Don't complain if tests don't hit defensive assertion code:
    raise NotImplementedError
    except NotImplementedError
    # Ignore pass
    pass
    # Ignore failure messages
    pytest.xfail
    # Ignore ImportError protection
    except ImportError
    # Ignore type checking code
    if TYPE_CHECKING
    # Cython function declarations
    cdef

include = */arch/*
omit =
    */_version.py
    */compat/*
    *recursions.py
    *samplers.py
ignore_errors = True
back to top