https://github.com/bashtage/arch
Raw File
Tip revision: 6181efe629306f95063bdd2728c563bd518dfa1f authored by Kevin Sheppard on 14 August 2018, 07:59:42 UTC
Merge pull request #219 from bashtage/optional-mpl
Tip revision: 6181efe
.coveragerc
# .coveragerc to control coverage.py
[run]
source = arch
branch = True
include = */arch/*
omit =
    */_version.py
    */compat/*
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
include = */arch/*
omit =
    */_version.py
    */compat/*
    *recursions.py
    *samplers.py
ignore_errors = True

back to top