From 7d635e42087db3ec0e3e50cac8ae1f893f7c5ff3 Mon Sep 17 00:00:00 2001 From: Peter Holloway Date: Tue, 2 Jun 2026 17:28:43 +0100 Subject: [PATCH] chore: Add just task to show coverage --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index 7ab2d9407..7d8280b5b 100644 --- a/justfile +++ b/justfile @@ -30,3 +30,7 @@ unit *OPTS: system *OPTS: uv run pytest tests/system_tests {{ OPTS }} + +coverage: + uv run pytest tests/unit_tests --cov --cov-report html + xdg-open htmlcov/index.html