home · contact · privacy
Slightly improve and re-organize Condition tests.
[plomtask] / scripts / pre-commit
index e4493a6f34eb279064d6e49e23ea02039f8f4e06..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
@@ -8,9 +9,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