python-cloudpulseclient/tools/flake8wrap.sh
Anand Shanmugam 7f65e593f1 Disabling python2.7 zuul jobs
Change-Id: I048bc0518ed63eb8299a079fb66ca710f739857b
2020-05-28 12:49:51 +05:30

21 lines
475 B
Bash
Executable File

#!/bin/sh
#
# A simple wrapper around flake8 which makes it possible
# to ask it to only verify files changed in the current
# git HEAD patch.
#
# Intended to be invoked via tox:
#
# tox -epep8 -- -HEAD
#
if test "x$1" = "x-HEAD" ; then
shift
files=$(git diff --name-only HEAD~1 | tr '\n' ' ')
echo "Running flake8 on ${files}"
diff -u --from-file /dev/null ${files} | flake8 --diff "$@"
else
echo "Running flake8 on all files"
exec flake8 "$@"
fi