diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2e16003adb..a661cac303 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -173,7 +173,7 @@ 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 @@ -181,15 +181,15 @@ part before or alongside your code PR. ```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 ```