Skip to content

Instantly share code, notes, and snippets.

@KnightKu
Forked from jlnwlf/pre-commit
Last active August 29, 2015 14:24
Show Gist options
  • Save KnightKu/0596abd7c0fa35327b2e to your computer and use it in GitHub Desktop.
Save KnightKu/0596abd7c0fa35327b2e to your computer and use it in GitHub Desktop.
#!/bin/bash
autopep=$(autopep8 -dr .)
if [[ -z $autopep ]]
then
echo "> PEP8 passed !"
else
echo "> PEP8 DID NOT pass !"
echo "$autopep" | colordiff
exit 1
fi
if [[ `python -m unittest discover .` ]]
then
echo "> Tests DID NOT pass !"
exit 1
else
echo "> Tests passed !"
fi
echo "Ready to commit !"
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment