cleanlab--cleanlab
f61469420b
Co-authored-by: Jonas Mueller <1390638+jwmueller@users.noreply.github.com>
39 行
831 B
INI
39 行
831 B
INI
# .coveragerc to control coverage.py
|
|
# https://coverage.readthedocs.io/en/latest/config.html
|
|
[run]
|
|
branch = True
|
|
omit =
|
|
cleanlab/experimental/*
|
|
|
|
[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 / error-reporting code:
|
|
raise
|
|
except
|
|
assert
|
|
warnings.warn
|
|
error_message
|
|
|
|
# Use print(f"...") for printing out non-pure strings:
|
|
print\(\"
|
|
|
|
# Don't complain if non-runnable code isn't run:
|
|
if 0:
|
|
if __name__ == .__main__.:
|
|
|
|
# Can't unit test big datasets:
|
|
if big_dataset
|
|
|
|
ignore_errors = True
|
|
|
|
[html]
|
|
directory = coverage_html_report
|