feat(docs): add task to list Doxygen coverage of documentation

This commit is contained in:
RaffaelW 2026-03-17 23:37:41 +01:00
parent 8efddfb90a
commit b8e76f4a9f

View file

@ -106,3 +106,11 @@ def docs(c, o=False):
webbrowser.open(f"file://{os.path.abspath(path)}")
return
raise Exit(code=1)
@task
def docs_coverage(c):
"""List doxygen coverage of documentation."""
subprocess.run(
"python tools/doxy-coverage.py docs/doxygen/xml --no-error", shell=True
)