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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.16.1
rev: v0.16.5
# Each project is linted under its own config; the global hook runs once per project.
hooks:
- id: ruff
Expand Down Expand Up @@ -66,12 +66,12 @@ repos:
stages: [pre-push]

- repo: https://github.com/Flagsmith/flagsmith-common
rev: v3.12.1
rev: v3.13.2
hooks:
- id: flagsmith-lint-tests

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.12.1 # Ensure this matches the version in api/pyproject.toml
rev: 0.12.7 # Ensure this matches the version in api/pyproject.toml
hooks:
- id: uv-lock
name: api-lockcheck
Expand All @@ -81,7 +81,7 @@ repos:
args: ["--project", "mcp", "--check"]

- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 44.9.0
rev: 44.52.1
hooks:
- id: renovate-config-validator
name: renovate-config-validator
Expand Down
1 change: 1 addition & 0 deletions api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ In your tests, verify your logs with the `caplog` fixture:
```python
from pytest_structlog import StructuredLogCapture


def test_my_view__success__logs_expected(
log: StructuredLogCapture,
) -> None:
Expand Down
Loading