From 3a3fe68b538e93fc2c4b7d7b68dc5dc94afe5aad Mon Sep 17 00:00:00 2001 From: Derek Passen Date: Sun, 1 Feb 2026 12:47:08 -0600 Subject: [PATCH] Add groups to justfile --- justfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 29d2cdd..93b16d7 100644 --- a/justfile +++ b/justfile @@ -3,27 +3,30 @@ commands: @just --list # Run unit tests +[group('test')] test: @uv run python -m pytest # Lint source code -[parallel] +[parallel, group('dev')] lint: lint-ruff lint-basedpyright # Lint code using ruff -[private] +[private, group('dev')] lint-ruff: @uv run python -m ruff check src tests # Lint code using basedpyright -[private] +[private, group('dev')] lint-basedpyright: @uv run python -m basedpyright src tests # Format code using ruff +[group('dev')] format: @uv run python -m ruff format src tests # Check for editorconfig violations using editorconfig-checker +[group('dev')] editorconfig: @editorconfig-checker