home · contact · privacy
Fix pre-commit script failing to delete test DBs based on new filename format.
[plomtask] / scripts / pre-commit
index e4493a6f34eb279064d6e49e23ea02039f8f4e06..7abafb9cd9de85b4790b659cf2cc22fa13353db7 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/."
+echo "Running unittest-parallel on tests/."
+unittest-parallel -t . -s tests/ -p '*.py'
 set +e
-python3 -m unittest tests/*.py
-rm test_db:*.*
+rm test_db:*
 set -e
 exit 0