home · contact · privacy
813455cac8cd690224f6b48862b90a56c95bfe1e
[plomtask] / scripts / pre-commit
1 #!/bin/sh
2 set -e
3 python3 -m mypy plomtask/*.py
4 python3 -m flake8 plomtask/*.py
5 python3 -m pylint plomtask/*.py
6 python3 -m mypy tests/*.py
7 python3 -m flake8 tests/*.py
8 python3 -m pylint tests/*.py
9 python3 -m unittest tests/*.py
10 exit 0