mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
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.
7 lines
115 B
Bash
Executable File
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."
|