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
4 changes: 2 additions & 2 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ exclude = [
line-length = 100
indent-width = 4

# Assume Python 3.12
target-version = "py312"
# Assume Python 3.14
target-version = "py314"

[lint]
# Enable:
Expand Down
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ tox -e migrations
tox -e pre-commit

# Run the main test suite (search, proxito, and embed_api tests are excluded by default)
tox -e py312 -- --nomigrations
tox -e py314 -- --nomigrations

# Run tests matching a keyword (faster) — use -k because --pyargs readthedocs is hardcoded
tox -e py312 -- -k "<keyword>" --reuse-db --nomigrations
tox -e py314 -- -k "<keyword>" --reuse-db --nomigrations

# Run only search tests (requires Elasticsearch sidecar in CI, skip locally unless available)
tox -e search
Expand Down
2 changes: 1 addition & 1 deletion pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.11.5
rev: v0.15.20
hooks:
# Run the linter.
- id: ruff
Expand Down