home · contact · privacy
Fix pre-commit hook not aborting commit on failed unit tests.
[plomtask] / scripts / pre-commit
index 2aaccb027d613c3d960b634e1bf7747ff0627a2b..c92a5eb0f8462356d31c4bc64c434bfd4a46a17e 100755 (executable)
@@ -1,7 +1,6 @@
 #!/bin/sh
 set -e
-# for dir in $(echo '.' 'plomtask' 'tests'); do
-for dir in $(echo 'tests'); do
+for dir in $(echo '.' 'plomtask' 'tests'); do
     echo "Running mypy on ${dir}/ …."
     python3 -m mypy --strict ${dir}/*.py
     echo "Running flake8 on ${dir}/ …"
@@ -9,6 +8,9 @@ for dir in $(echo 'tests'); do
     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/."
+unittest-parallel -t . -s tests/ -p '*.py'
+set +e
+rm test_db:*.*
+set -e
 exit 0