home · contact · privacy
Slightly improve and re-organize Condition tests.
[plomtask] / scripts / pre-commit
index c92a5eb0f8462356d31c4bc64c434bfd4a46a17e..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
@@ -11,6 +12,6 @@ done
 echo "Running unittest-parallel on tests/."
 unittest-parallel -t . -s tests/ -p '*.py'
 set +e
-rm test_db:*.*
+rm test_db:*
 set -e
 exit 0