add a jenkins.sh

This commit is contained in:
Benjamin Dauvergne 2015-10-14 23:24:52 +02:00
parent c8a5590205
commit 840f80b766
2 changed files with 16 additions and 3 deletions

16
jenkins.sh Executable file
View File

@ -0,0 +1,16 @@
rm -f coverage.xml
rm -f test_results.xml
export PIP_USE_WHEEL=no
pip install --upgrade pip
pip install --upgrade pylint==1.4.0 astroid==1.3.2 # 1.4.1 is buggy
pip install --upgrade pytest pytest-django pytest-cov webtest
pip install --upgrade 'git+http://repos.entrouvert.org/combo.git/'
pip install --upgrade 'git+http://repos.entrouvert.org/eopayment.git/'
pip install -e .
DJANGO_SETTINGS_MODULE=combo.settings COMBO_SETTINGS_FILE=tests/settings.py py.test --junitxml=test_results.xml --cov-report xml --cov=lingo/ --cov-config .coveragerc tests/
test -f pylint.out && cp pylint.out pylint.out.prev
(pylint -f parseable --rcfile /var/lib/jenkins/pylint.django.rc lingo | tee pylint.out) || /bin/true
test -f pylint.out.prev && (diff pylint.out.prev pylint.out | grep '^[><]' | grep .py) || /bin/true

View File

@ -1,3 +0,0 @@
django>=1.7, <1.8
django-jsonfield
eopayment