Files
typeshed/runtests.sh
Lukasz Langa 8c5c788a4d Enable flake8-pyi plugin to automatically include *.pyi files
This simplifies running flake8 tests and reduces the amount of F821 errors
reported (flake8-pyi enables support for forward references in *.pyi files).
The error code is left disabled until I clean up the remaining issues.
2016-12-21 00:56:01 -08:00

7 lines
115 B
Bash
Executable File

#!/bin/sh
./tests/mypy_test.py
./tests/pytype_test.py
echo "Running flake8..."
flake8 && echo "flake8 run clean."