20 lines
367 B
Bash
Executable File
20 lines
367 B
Bash
Executable File
#!/bin/sh
|
|
|
|
### check type annotations with mypy
|
|
|
|
set -e
|
|
|
|
base=$(dirname "$(readlink -f "$0")")
|
|
cd "${base}"
|
|
|
|
if [ ! -d "venv" -o ! -x "venv/bin/python" ]; then
|
|
echo >&2 "Missing virtualenv in 'venv'; maybe run setup-venv.sh first!"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -x ./venv/bin/flake8 ]; then
|
|
./venv/bin/pip install flake8 flake8-import-order
|
|
fi
|
|
|
|
./venv/bin/flake8 src
|