Skip to content
Open
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,23 +173,23 @@ part before or alongside your code PR.
5. **Run unit tests:**

```shell
pytest ./tests/unittests
uv run pytest ./tests/unittests
```

NOTE: for accurate repro of test failure, only include `test`, `eval` and
`a2a` as extra dependencies.

```shell
uv sync --extra test --extra eval --extra a2a
pytest ./tests/unittests
uv run pytest ./tests/unittests
```

6. **Auto-format the code:**

**NOTE**: We use `isort` and `pyink` for styles. Use the included
autoformat.sh to auto-format.
**NOTE**: We use `isort` and `pyink` for styles. The command below installs these tools.

```shell
uv sync --extra dev
./autoformat.sh
```

Expand Down