From 8f2a048e8e540d7bc452653691b84fdad5f48f87 Mon Sep 17 00:00:00 2001 From: Ivan Shymko Date: Mon, 23 Feb 2026 16:21:29 +0000 Subject: [PATCH] docs: sync mypy command in GEMINI.md with CI In [CI](https://github.com/a2aproject/a2a-python/blob/3ad2503107dd1faa71ab6b56da9017141e24e34c/.github/workflows/linter.yaml#L41) we don't run mypy on tests, so in order to prevent model from encountering old issues specify the same command as in CI. --- GEMINI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GEMINI.md b/GEMINI.md index ef1159207..e5b7cc586 100644 --- a/GEMINI.md +++ b/GEMINI.md @@ -12,7 +12,7 @@ ``` 3. Run mypy type checkers to check for type errors ``` - uv run mypy + uv run mypy src ``` 4. Run the unit tests to make sure that none of the unit tests are broken. ```