3 for dir in $(echo '.' 'plomtask' 'tests'); do
4 echo "Running mypy on ${dir}/ …."
5 python3 -m mypy ${dir}/*.py
6 echo "Running flake8 on ${dir}/ …"
7 python3 -m flake8 ${dir}/*.py
8 echo "Running pylint on ${dir}/ …"
9 python3 -m pylint ${dir}/*.py
11 echo "Running unittest on tests/."
12 python3 -m unittest tests/*.py