summaryrefslogtreecommitdiffstats
path: root/git/pylint.sh
blob: 286747565ed6822f710959ba7c75786b67252cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash


OLDREV=$1
NEWREV=$2
TRG_BRANCH=$3

PYTHON=/var/lib/jenkins/python27/bin/python

/usr/bin/git diff --name-only $OLDREV $NEWREV --diff-filter=ACM | \
 grep ".py$" | \
 xargs -r -I{} ${PYTHON} -m pylint --rcfile ${WORKSPACE}/git/.pylintrc  {}

exit $?