Files
tildes/git_hooks/pre-commit
T
2018-07-17 13:39:29 -06:00

8 lines
214 B
Bash
Executable File

#!/bin/sh
#
# Pre-commit hook script that ensures mypy checks and tests pass
vagrant ssh -c ". activate \
&& echo 'Checking mypy type annotations...' && mypy . \
&& echo -n 'Running tests: ' && pytest -q"