We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A useful pre-commit hook.
#!/bin/bash VIRTUALENV_DIR=virtualenv if [ "$VIRTUAL_ENV" == "" ] ; then if [ ! -d "$VIRTUALENV_DIR" ] ; then virtualenv --no-site-packages "$VIRTUALENV_DIR" fi source "$VIRTUALENV_DIR/bin/activate" fi pip -q install pep8 python setup.py nosetests && \ pep8 pygout/ tests/ exit $?