This patch adds the 'fast8' test that Cinder has to os-brick. It's a simple pep8 check against what has changed since HEAD. This allows you to test for pep8 violations in files that you have changed without testing the entire repo. Change-Id: I4e3840d763d08a80c84ba00e2d5e5710a905ecf3changes/64/327964/1
parent
d659c6e03f
commit
0dcb996eaf
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd $(dirname "$0")/..
|
||||
CHANGED=$(git diff --name-only HEAD~1 | tr '\n' ' ')
|
||||
|
||||
# Skip files that don't exist
|
||||
# (have been git rm'd)
|
||||
CHECK=""
|
||||
for FILE in $CHANGED; do
|
||||
if [ -f "$FILE" ]; then
|
||||
CHECK="$CHECK $FILE"
|
||||
fi
|
||||
done
|
||||
|
||||
diff -u --from-file /dev/null $CHECK | flake8 --diff
|
Loading…
Reference in new issue