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=e4493a6f34eb279064d6e49e23ea02039f8f4e06;hb=3b97ae2a26cbc80983d56ee5d0b4ac5334038467;hp=cab455311fff30eb454474b3ee840a28222bb0eb;hpb=b557c789f4eec704db0e6276390395fac5d8db9e;p=plomtask diff --git a/scripts/pre-commit b/scripts/pre-commit index cab4553..e4493a6 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -2,12 +2,15 @@ set -e for dir in $(echo '.' 'plomtask' 'tests'); do echo "Running mypy on ${dir}/ …." - python3 -m mypy ${dir}/*.py + 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/." +set +e python3 -m unittest tests/*.py +rm test_db:*.* +set -e exit 0