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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Run tests
timeout-minutes: 5
run: uv run pytest -vvl
run: uv run pytest -vvl --maxfail=1 --reruns 1

- name: Type checking with basedpyright
run: uvx basedpyright
Expand Down
13 changes: 7 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
ci:
autoupdate_commit_msg: "chore: update pre-commit hooks"
autoupdate_schedule: weekly
autofix_commit_msg: "style: pre-commit fixes"

exclude: CHANGELOG.md

Expand All @@ -22,17 +23,17 @@ repos:
- id: end-of-file-fixer

- repo: https://gitlab.com/bmares/check-json5
rev: v1.0.0
rev: v1.0.1
hooks:
- id: check-json5

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.34.1
rev: 0.36.0
hooks:
- id: check-github-workflows

- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.6.2
rev: v3.8.1
hooks:
- id: prettier
types_or: [yaml, html, json]
Expand All @@ -58,7 +59,7 @@ repos:
- id: python-use-type-annotations

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.4
rev: v0.14.14
hooks:
- id: ruff-check
types_or: [python, jupyter]
Expand All @@ -67,12 +68,12 @@ repos:
types_or: [python, jupyter]

- repo: https://github.com/scientific-python/cookie
rev: 2025.11.07
rev: 2025.11.21
hooks:
- id: sp-repo-review
additional_dependencies: ["repo-review[cli]"]

- repo: https://github.com/kynan/nbstripout
rev: 0.8.1
rev: 0.9.0
hooks:
- id: nbstripout
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async-kernel = "async_kernel.command:command_line"
docs = ["mkdocs-material",
"mike",
"mkdocstrings[python]",
"mkdocs-jupyter",
"mkdocs-jupyter >= 0.25.1",
"mkdocs-open-in-new-tab",
"mkdocs-git-revision-date-localized-plugin",
"jupyterlab",
Expand Down Expand Up @@ -114,6 +114,7 @@ local_scheme = "no-local-version"
minversion = "6.0"
xfail_strict = true
log_cli_level = "INFO"
log_level = "INFO"
addopts = [
"-raXs", "--durations=10", "--color=yes", "--doctest-modules",
"--showlocals", "--strict-markers", "--strict-config",
Expand Down
Loading
Loading