X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/git-favicon.png?a=blobdiff_plain;f=scripts%2Fpre-commit;h=7abafb9cd9de85b4790b659cf2cc22fa13353db7;hb=1701d662f8163d5dc93bf87988e740639108f6ad;hp=a053262bcb0c49ea34392c4b11a779e8fe2b4431;hpb=fe9b4953b3919439e8d261e76eae14349154c055;p=plomtask diff --git a/scripts/pre-commit b/scripts/pre-commit index a053262..7abafb9 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -1,6 +1,16 @@ #!/bin/sh set -e -python3 -m mypy task.py -python3 -m flake8 task.py -python3 -m pylint --good-names 'do_GET,do_POST' task.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/." +unittest-parallel -t . -s tests/ -p '*.py' +set +e +rm test_db:* +set -e exit 0