File: mypy-run.sh

package info (click to toggle)
knot-resolver 6.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 16,320 kB
  • sloc: javascript: 42,732; ansic: 39,900; python: 12,459; cpp: 2,121; sh: 1,933; xml: 193; makefile: 181
file content (17 lines) | stat: -rwxr-xr-x 460 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
set -o nounset -o errexit
source "$(dirname "$0")/common.sh"

PYFILES=$(find . \
    -path ./.git -prune -o \
    -path ./contrib -o \
    -path ./tools -prune -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}

# tools
${PYTHON} -m mypy --ignore-missing-imports tools