Skip to content

Commit 96f13f6

Browse files
committed
Add groups to justfile
1 parent 296568a commit 96f13f6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

justfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,30 @@ commands:
33
@just --list
44

55
# Run unit tests
6+
[group('test')]
67
test:
78
@uv run python -m pytest
89

910
# Lint source code
10-
[parallel]
11+
[parallel, group('dev')]
1112
lint: lint-ruff lint-basedpyright
1213

1314
# Lint code using ruff
14-
[private]
15+
[private, group('dev')]
1516
lint-ruff:
1617
@uv run python -m ruff check src tests
1718

1819
# Lint code using basedpyright
19-
[private]
20+
[private, group('dev')]
2021
lint-basedpyright:
2122
@uv run python -m basedpyright src tests
2223

2324
# Format code using ruff
25+
[group('dev')]
2426
format:
2527
@uv run python -m ruff format src tests
2628

2729
# Check for editorconfig violations using editorconfig-checker
30+
[group('dev')]
2831
editorconfig:
2932
@editorconfig-checker

0 commit comments

Comments
 (0)