Skip to content
Merged
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
3 changes: 3 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
- We use uv for everything (e.g. we do `uv run python ...` to run some python code, and
`uv run pytest tests/unit` to run unit tests). Please prefer `uv run python -c ...` over
`python3 -c ...`
- When you create or modify a code example in a public docstring, always update the corresponding
doc test in the appropriate file of `tests/doc`. This also applies to any change in an example of
a `.rst` file, that must be updated in the corresponding test in `tests/doc/test_rst.py`.
- After generating code, please run `uv run ty check`, `uv run ruff check` and `uv run ruff format`.
Fix any error.
- After changing anything in `src` or in `tests/unit` or `tests/doc`, please identify the affected
Expand Down