Revision 2bc70ee0
Added by Frédéric Péters over 8 years ago
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 |
pip install -r requirements.txt # install dependencies, for better pylint results
|
|
12 | 12 |
test -f pylint.out && cp pylint.out pylint.out.prev |
13 | 13 |
(pylint -f parseable --rcfile /var/lib/jenkins/pylint.django.rc corbo/ | tee pylint.out) || /bin/true |
14 | 14 |
test -f pylint.out.prev && (diff pylint.out.prev pylint.out | grep '^[><]' | grep .py) || /bin/true |
Also available in: Unified diff
jenkins: use pip -r to install dependencies
(setup.py develop fails, for whatever reason)