home · contact · privacy
To Condition view, add listings of related Processes.
[plomtask] / scripts / pre-commit
index cab455311fff30eb454474b3ee840a28222bb0eb..19ec8061817e141735a87d04c8da7ef29f7108d7 100755 (executable)
@@ -2,12 +2,15 @@
 set -e
 for dir in $(echo '.' 'plomtask' 'tests'); do
     echo "Running mypy on ${dir}/ …."
-    python3 -m mypy ${dir}/*.py
+    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
+echo "Running unittest-parallel on tests/."
+set +e
+unittest-parallel -t . -s tests/ -p '*.py'
+rm test_db:*.*
+set -e
 exit 0