| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/bin/sh
- # Create a link to this file at .git/hooks/pre-commit to
- # force PEP8 validation prior to committing
- #
- # Ignored violations:
- #
- # W504: Line break after binary operator
- # E501: Line too long
- exec 1>&2
- EXIT=0
- RED='\033[0;31m'
- NOCOLOR='\033[0m'
- if [ -d ./venv/ ]; then
- VENV="$PWD/venv"
- if [ -e $VENV/bin/python ]; then
- PATH=$VENV/bin:$PATH
- elif [ -e $VENV/Scripts/python.exe ]; then
- PATH=$VENV/Scripts:$PATH
- fi
- fi
- echo "Validating PEP8 compliance..."
- pycodestyle --ignore=W504,E501 netbox/
- if [ $? != 0 ]; then
- EXIT=1
- fi
- echo "Checking for missing migrations..."
- python netbox/manage.py makemigrations --dry-run --check
- if [ $? != 0 ]; then
- EXIT=1
- fi
- if [ $EXIT != 0 ]; then
- printf "${RED}COMMIT FAILED${NOCOLOR}\n"
- fi
- exit $EXIT
|