Projet

Général

Profil

0001-jenkins-install-dependencies-before-running-pylint-1.patch

Frédéric Péters, 15 juillet 2016 14:16

Télécharger (831 octets)

Voir les différences:

Subject: [PATCH] jenkins: install dependencies before running pylint (#12593)

 jenkins.sh | 1 +
 1 file changed, 1 insertion(+)
jenkins.sh
8 8
pip install --upgrade tox
9 9
pip install --upgrade pylint pylint-django
10 10
tox -r
11
python setup.py develop
11 12
test -f pylint.out && cp pylint.out pylint.out.prev
12 13
(pylint -f parseable --rcfile /var/lib/jenkins/pylint.django.rc corbo/ | tee pylint.out) || /bin/true
13 14
test -f pylint.out.prev && (diff pylint.out.prev pylint.out | grep '^[><]' | grep .py) || /bin/true
14
-