X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fpre-commit;h=cab455311fff30eb454474b3ee840a28222bb0eb;hb=b557c789f4eec704db0e6276390395fac5d8db9e;hp=e1cfb733180349084416dae48f301d795815ffc2;hpb=ee89735cb3714dc7c3ec8bbd0643cf279ee9a1ef;p=plomtask diff --git a/scripts/pre-commit b/scripts/pre-commit index e1cfb73..cab4553 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -1,6 +1,13 @@ #!/bin/sh set -e -python3 -m mypy *.py -python3 -m flake8 *.py -python3 -m pylint --good-names 'do_GET,do_POST' *.py +for dir in $(echo '.' 'plomtask' 'tests'); do + echo "Running mypy on ${dir}/ …." + python3 -m mypy ${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 on tests/." +python3 -m unittest tests/*.py exit 0