mirror of
https://gitlab.com/tildes/tildes.git
synced 2026-05-03 14:27:00 +02:00
9 lines
292 B
Bash
Executable File
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"
|