Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
- name: Install the project
run: uv sync --no-default-groups --group docs
- name: Check if the Zensical documentation can be built
run: uv run zensical build -s
run: uv run --no-default-groups --group docs zensical build -s
2 changes: 1 addition & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
- name: Install the project
run: uv sync --no-default-groups --group quality
- name: Run prek
run: uv run prek run -a --show-diff-on-failure
run: uv run --no-default-groups --group quality prek run -a --show-diff-on-failure
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
run: uv sync --no-default-groups --group test

- name: Run tests
run: uv run python -Xutf8 -m pytest --cov --cov-config=pyproject.toml --cov-report=xml tests
run:
uv run --no-default-groups --group test python -Xutf8 -m pytest --cov
--cov-config=pyproject.toml --cov-report=xml tests

- name: Upload test results to Codecov
if: ${{ !cancelled() }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Check typing using ty
run: uv run ty check
run: uv run --no-default-groups --group validate ty check

- name: Check typing using mypy
run: uv run mypy .
run: uv run --no-default-groups --group validate mypy .
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ test = [
"pytest-cov>=5",
"pytest-mock>=3.14.1",
]
validate = ["mypy>=2.3.1", "ruff>=0.16.0", "ty>=0.0.75", "types-setuptools>=80.8.0"]
validate = ["ipython>=8.23", "mypy>=2.3.1", "ty>=0.0.75", "types-setuptools>=80.8.0"]

[tool.mypy]
disallow_incomplete_defs = true
Expand Down
Loading