From 39317cf42be27fa4a15558910b706f3d58327f94 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 30 Apr 2025 11:06:09 -0400 Subject: [PATCH] [Docs] Add command for running mypy tests from CI (#17475) Signed-off-by: Russell Bryant --- docs/source/contributing/overview.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/contributing/overview.md b/docs/source/contributing/overview.md index 3dceec1e57a4d..7c4016cae1d34 100644 --- a/docs/source/contributing/overview.md +++ b/docs/source/contributing/overview.md @@ -40,6 +40,10 @@ pre-commit install --hook-type pre-commit --hook-type commit-msg # You can manually run pre-commit with pre-commit run --all-files +# To manually run something from CI that does not run +# locally by default, you can run: +pre-commit run mypy-3.9 --hook-stage manual --all-files + # Unit tests pytest tests/ ```