From b8e76f4a9f565638a4b959de3242f5e346bcecb3 Mon Sep 17 00:00:00 2001 From: RaffaelW <146560011+RaffaelW@users.noreply.github.com> Date: Tue, 17 Mar 2026 23:37:41 +0100 Subject: [PATCH] feat(docs): add task to list Doxygen coverage of documentation --- tasks.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tasks.py b/tasks.py index 1d8d4e9..df0e41b 100644 --- a/tasks.py +++ b/tasks.py @@ -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 + )