X-Git-Url: https://plomlompom.com/repos/pick_tasks?a=blobdiff_plain;f=scripts%2Fpre-commit;h=19ec8061817e141735a87d04c8da7ef29f7108d7;hb=f8b17d94a1867e7cc01782c9301ccb718de0f9c2;hp=813455cac8cd690224f6b48862b90a56c95bfe1e;hpb=4546631ed7cc59f3e66a1902b28930f955b2b03f;p=plomtask diff --git a/scripts/pre-commit b/scripts/pre-commit index 813455c..19ec806 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -1,10 +1,16 @@ #!/bin/sh set -e -python3 -m mypy plomtask/*.py -python3 -m flake8 plomtask/*.py -python3 -m pylint plomtask/*.py -python3 -m mypy tests/*.py -python3 -m flake8 tests/*.py -python3 -m pylint tests/*.py -python3 -m unittest tests/*.py +for dir in $(echo '.' 'plomtask' 'tests'); do + echo "Running mypy on ${dir}/ …." + python3 -m mypy --strict ${dir}/*.py + echo "Running flake8 on ${dir}/ …" + python3 -m flake8 ${dir}/*.py + echo "Running pylint on ${dir}/ …" + 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 exit 0