X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/git-logo.png?a=blobdiff_plain;f=scripts%2Fpre-commit;h=2aaccb027d613c3d960b634e1bf7747ff0627a2b;hb=10af8a54a17047a4554d4b8d051a238271c74906;hp=813455cac8cd690224f6b48862b90a56c95bfe1e;hpb=4546631ed7cc59f3e66a1902b28930f955b2b03f;p=plomtask diff --git a/scripts/pre-commit b/scripts/pre-commit index 813455c..2aaccb0 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -1,10 +1,14 @@ #!/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 +# for dir in $(echo '.' 'plomtask' 'tests'); do +for dir in $(echo '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 on tests/." python3 -m unittest tests/*.py exit 0