health-assistant / .coveragerc
yuting111222's picture
Add Health Assistant AI project with AI food analyzer and complete backend/frontend
89b8989
raw
history blame contribute delete
651 Bytes
[run]
source = .
omit =
*/tests/*
*/venv/*
*/.venv/*
*/env/*
*/.env/*
*/site-packages/*
*/__pycache__/*
[report]
# Lines to exclude from coverage consideration
exclude_lines =
# Don't complain about debug-only code
pragma: no cover
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__.
pass
precision = 2
show_missing = True
[html]
directory = htmlcov
[paths]
source =
.
*/backend/*
*/app/*