Skip to content

Commit 38b3b49

Browse files
committed
Fix: use extras correctly in uv run
1 parent f852414 commit 38b3b49

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v7
1212
- uses: astral-sh/setup-uv@v9.0.0
13-
- run: uv run pytest -v
13+
- run: uv run --extra testing pytest -v

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ build:
99
# Check spelling in the source files;
1010
# configured in pyproject.toml.
1111
spell:
12-
uv run codespell
12+
uv run --extra testing codespell
1313

1414
# Run all lint commands.
1515
lint: spell
1616

1717
# Run schema tests.
1818
test:
19-
uv run pytest -v
19+
uv run --extra testing pytest -v

0 commit comments

Comments
 (0)