home · contact · privacy
Fix pre-commit hook not aborting commit on failed unit tests.
[plomtask] / scripts / pre-commit
index eec2db4ef487ef11f0fe2152cb24412bf6a2ebe1..c92a5eb0f8462356d31c4bc64c434bfd4a46a17e 100755 (executable)
@@ -8,9 +8,9 @@ for dir in $(echo '.' 'plomtask' 'tests'); do
     echo "Running pylint on ${dir}/ …"
     python3 -m pylint ${dir}/*.py
 done
-echo "Running unittest on tests/."
-set +e
+echo "Running unittest-parallel on tests/."
 unittest-parallel -t . -s tests/ -p '*.py'
-# rm test_db:*.*
+set +e
+rm test_db:*.*
 set -e
 exit 0