home · contact · privacy
Slightly improve and re-organize Condition tests.
[plomtask] / scripts / pre-commit
index 19ec8061817e141735a87d04c8da7ef29f7108d7..e4480354be0edab044bc69d5fada5ab840046dfa 100755 (executable)
@@ -1,5 +1,6 @@
 #!/bin/sh
 set -e
+# for dir in $(echo 'tests'); do
 for dir in $(echo '.' 'plomtask' 'tests'); do
     echo "Running mypy on ${dir}/ …."
     python3 -m mypy --strict ${dir}/*.py
@@ -9,8 +10,8 @@ for dir in $(echo '.' 'plomtask' 'tests'); do
     python3 -m pylint ${dir}/*.py
 done
 echo "Running unittest-parallel on tests/."
-set +e
 unittest-parallel -t . -s tests/ -p '*.py'
-rm test_db:*.*
+set +e
+rm test_db:*
 set -e
 exit 0