From de0cd8034aaadc76bef078b39e5ec7daeaaffe77 Mon Sep 17 00:00:00 2001 From: bronsen Date: Sat, 14 Feb 2026 18:56:30 +0100 Subject: [PATCH] just: allow passing args to pytest --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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