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