home · contact · privacy
Refactor saving and caching tests, treatment of None IDs.
[plomtask] / scripts / pre-commit
index 9400e92d5e140340c679769d1173206741b5575a..7abafb9cd9de85b4790b659cf2cc22fa13353db7 100755 (executable)
@@ -1,6 +1,16 @@
 #!/bin/sh
 set -e
-python3 -m mypy *.py
-python3 -m flake8 *.py
-python3 -m pylint *.py
+for dir in $(echo '.' 'plomtask' '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-parallel on tests/."
+unittest-parallel -t . -s tests/ -p '*.py'
+set +e
+rm test_db:*
+set -e
 exit 0