From dbc46d4e036109fe0a1616d6332c7a2360387a69 Mon Sep 17 00:00:00 2001 From: bronsen Date: Fri, 20 Feb 2026 21:26:34 +0100 Subject: [PATCH] just: default test recipe omits "final" tests --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 9aec35a..3d77840 100644 --- a/justfile +++ b/justfile @@ -41,6 +41,9 @@ update-deps: # Run tests, ARGS are passed-through to pytest test *ARGS: + uv run pytest tests.py -m "not final" {{ ARGS }} + +alltests *ARGS: uv run pytest tests.py {{ ARGS }} # run tests and create coverage reports