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