There was an error while loading. Please reload this page.
1 parent f852414 commit 38b3b49Copy full SHA for 38b3b49
2 files changed
.github/workflows/validation.yml
@@ -10,4 +10,4 @@ jobs:
10
steps:
11
- uses: actions/checkout@v7
12
- uses: astral-sh/setup-uv@v9.0.0
13
- - run: uv run pytest -v
+ - run: uv run --extra testing pytest -v
justfile
@@ -9,11 +9,11 @@ build:
9
# Check spelling in the source files;
# configured in pyproject.toml.
spell:
- uv run codespell
+ uv run --extra testing codespell
14
# Run all lint commands.
15
lint: spell
16
17
# Run schema tests.
18
test:
19
- uv run pytest -v
+ uv run --extra testing pytest -v
0 commit comments