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/form?a=blobdiff_plain;f=scripts%2Fpre-commit;h=c92a5eb0f8462356d31c4bc64c434bfd4a46a17e;hb=HEAD;hp=19ec8061817e141735a87d04c8da7ef29f7108d7;hpb=f8b17d94a1867e7cc01782c9301ccb718de0f9c2;p=plomtask diff --git a/scripts/pre-commit b/scripts/pre-commit index 19ec806..e448035 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -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 @@ -9,8 +10,8 @@ for dir in $(echo '.' 'plomtask' 'tests'); do 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 +rm test_db:* set -e exit 0