Skip to content

Commit 8bcadae

Browse files
chore: sync Justfile
1 parent 9c98c38 commit 8bcadae

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

Justfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ pre-commit: sync type-check lint format test
3939
@echo "Pre-commit checks passed"
4040

4141
# Testing
42+
# Default `test` excludes the e2e suite (run separately via `test-e2e`).
4243
test:
43-
uv run pytest
44+
uv run pytest -m "not e2e"
4445

4546
test-unit:
4647
uv run pytest -m unit
@@ -49,7 +50,11 @@ test-integration:
4950
uv run pytest -m integration
5051

5152
test-e2e:
52-
uv run pytest tests/e2e -m e2e --no-cov
53+
uv run pytest -m e2e --no-cov || test $? -eq 5
54+
55+
# Everything, including the e2e suite.
56+
test-all:
57+
uv run pytest --no-cov
5358

5459
# Build & Package
5560
build: sync

0 commit comments

Comments
 (0)