swh:1:snp:d7cd4867c335577b1b09043f65aeb6d95a54799a
Raw File
Tip revision: 3a27ec19fd9edc2f921f3d555dec09dd2c8455cc authored by Kevin Sheppard on 31 August 2019, 08:44:39 UTC
RLS: 4.9.1
Tip revision: 3a27ec1
.coveragerc
# .coveragerc to control coverage.py
[run]
source = arch
branch = True
include = */arch/*
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
    # Cython function declarations
    cdef

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

back to top