From b39663b5d1c9e60b2ea2eba6548ab3299dadb33b Mon Sep 17 00:00:00 2001 From: Stuart Maxwell Date: Thu, 19 Sep 2024 20:55:42 +1200 Subject: [PATCH] Better coverage reports --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index 717fab8..59bc688 100644 --- a/justfile +++ b/justfile @@ -44,6 +44,11 @@ tox: # Run coverage cov: + uv run --python {{python_version}} coverage run -m pytest + uv run --python {{python_version}} coverage report -m + +# Run coverage +cov-html: uv run --python {{python_version}} coverage run -m pytest uv run --python {{python_version}} coverage html