home · contact · privacy
More refactoring.
[plomtask] / scripts / pre-commit
index a053262bcb0c49ea34392c4b11a779e8fe2b4431..2aaccb027d613c3d960b634e1bf7747ff0627a2b 100755 (executable)
@@ -1,6 +1,14 @@
 #!/bin/sh
 set -e
-python3 -m mypy task.py
-python3 -m flake8 task.py
-python3 -m pylint --good-names 'do_GET,do_POST' task.py
+# for dir in $(echo '.' 'plomtask' 'tests'); do
+for dir in $(echo 'tests'); do
+    echo "Running mypy on ${dir}/ …."
+    python3 -m mypy --strict ${dir}/*.py
+    echo "Running flake8 on ${dir}/ …"
+    python3 -m flake8 ${dir}/*.py
+    echo "Running pylint on ${dir}/ …"
+    python3 -m pylint ${dir}/*.py
+done
+echo "Running unittest on tests/."
+python3 -m unittest tests/*.py
 exit 0