diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/deckard/ci/mypy-run.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/deckard/ci/mypy-run.sh b/tests/deckard/ci/mypy-run.sh new file mode 100755 index 0000000..d99e256 --- /dev/null +++ b/tests/deckard/ci/mypy-run.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +set -o nounset -o errexit +source "$(dirname "$0")/common.sh" + +PYFILES=$(find . \ + -path ./.git -prune -o \ + -path ./contrib -o \ + -type d -exec test -e '{}/__init__.py' \; -print -prune -o \ + -name '*.py' -print -o \ + -type f -exec grep -qsm1 '^#!.*\bpython' '{}' \; -print) +set -e + +${PYTHON} -m mypy --ignore-missing-imports ${PYFILES} |