diff --git a/justfile b/justfile index bfc462d..5196518 100644 --- a/justfile +++ b/justfile @@ -21,8 +21,8 @@ exports-deps: uv export {{ uv_export_options }} --output-file requirements.txt uv export {{ uv_export_options }} --only-dev --output-file requirements.dev.txt -test: - uv run pytest tests.py +test *ARGS: + uv run pytest tests.py {{ ARGS }} coverage: uv run pytest tests.py --cov=src/ --cov-report term --cov-report xml --cov-report html --cov-config pyproject.toml