chore: add script for running mypy type checks and speed up mypy checks in CI jobs (#17489)
This commit is contained in:
11
dev/run-mypy
Executable file
11
dev/run-mypy
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
|
||||
if ! command -v mypy &> /dev/null; then
|
||||
poetry install -C api --with dev
|
||||
fi
|
||||
|
||||
# run mypy checks
|
||||
poetry run -C api \
|
||||
python -m mypy --install-types --non-interactive .
|
Reference in New Issue
Block a user