Skip to content
  • Jerome Berthier's avatar
    tools/pyflakes.sh: allow to override PYFILES from environment variable · c1d0e3c6
    Jerome Berthier authored and hydrargyrum's avatar hydrargyrum committed
    Useful when using with a pre-push hook, it is useless to run flakes
    on the whole code base every time you push.
    
    Example of pre-push hook using this feature:
    
    ref=$(git rev-list --boundary HEAD...master | grep "^-" | cut -c2-)
    PYFILES="$(git diff ${ref} --name-only | grep -E "*.py$" | xargs)" $PWD/tools/pyflakes.sh
    if [ "$?" -ne "0" ]; then
        echo >&2 "Flakes error"
        exit 1
    fi
    c1d0e3c6