https://github.com/laszukdawid/PyEMD
Revision f5b868a4689bac96d2e60654c85269fe6fedb28f authored by Dawid Laszuk on 18 November 2017, 04:04:39 UTC, committed by Dawid Laszuk on 18 November 2017, 04:04:39 UTC
1 parent a2329d7
Raw File
Tip revision: f5b868a4689bac96d2e60654c85269fe6fedb28f authored by Dawid Laszuk on 18 November 2017, 04:04:39 UTC
Add seed interface to EEMD and CEEMDAN
Tip revision: f5b868a
.coveragerc
# .coveragerc to control coverage.py
[run]
branch = True

[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 self\.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__.:

ignore_errors = True

[html]
directory = coverage_html_report
back to top