summaryrefslogtreecommitdiffstats
path: root/git/pylint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'git/pylint.sh')
-rwxr-xr-xgit/pylint.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/git/pylint.sh b/git/pylint.sh
new file mode 100755
index 000000000..73d08e00c
--- /dev/null
+++ b/git/pylint.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+
+OLDREV=$1
+NEWREV=$2
+TRG_BRANCH=$3
+
+/usr/bin/git diff --name-only $OLDREV $NEWREV --diff-filter=ACM | \
+ grep ".py$" | \
+ xargs -r -I{} /usr/bin/python -m pylint --rcfile ${WORKSPACE}/git/.pylintrc {}
+
+exit $?