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

9 lines
292 B
Bash
Executable File

#!/bin/sh
#
# Pre-push hook script that ensures mypy checks, style checks, and tests pass
vagrant ssh -c ". activate \
&& echo 'Checking mypy type annotations...' && mypy . \
&& echo -n 'Running tests: ' && pytest -q \
&& echo 'Checking code style (takes a while)...' && pylama"