Files
musiclist-server/pre-commit.sh
2020-07-04 00:39:36 -04:00

21 lines
178 B
Bash
Executable File

#!/bin/sh
set -eu
. .venv/bin/activate
flake8 .
FLAKE_8=$?
./test.sh
TEST=$?
if [ $FLAKE_8 -ne 0 ]; then
exit $FLAKE_8
fi
if [ $TEST -ne 0 ]; then
exit $TEST
fi
exit 0