home · contact · privacy
Nest Todo creation by adopting and making children as needed.
[plomtask] / scripts / pre-commit
index 2aaccb027d613c3d960b634e1bf7747ff0627a2b..e4493a6f34eb279064d6e49e23ea02039f8f4e06 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}/ …"
@@ -10,5 +9,8 @@ for dir in $(echo 'tests'); do
     python3 -m pylint ${dir}/*.py
 done
 echo "Running unittest on tests/."
+set +e
 python3 -m unittest tests/*.py
+rm test_db:*.*
+set -e
 exit 0