File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,27 +3,30 @@ commands:
33 @ just --list
44
55# Run unit tests
6+ [group (' test' )]
67test :
78 @ uv run python -m pytest
89
910# Lint source code
10- [parallel ]
11+ [parallel, group( ' dev' ) ]
1112lint : lint-ruff lint-basedpyright
1213
1314# Lint code using ruff
14- [private ]
15+ [private, group( ' dev' ) ]
1516lint-ruff :
1617 @ uv run python -m ruff check src tests
1718
1819# Lint code using basedpyright
19- [private ]
20+ [private, group( ' dev' ) ]
2021lint-basedpyright :
2122 @ uv run python -m basedpyright src tests
2223
2324# Format code using ruff
25+ [group (' dev' )]
2426format :
2527 @ uv run python -m ruff format src tests
2628
2729# Check for editorconfig violations using editorconfig-checker
30+ [group (' dev' )]
2831editorconfig :
2932 @ editorconfig-checker
You can’t perform that action at this time.
0 commit comments