remove obsolete jenkins.sh (#38695)

This commit is contained in:
Frédéric Péters 2019-12-23 16:25:49 +01:00
parent d5ff023e4f
commit b81a758804
1 changed files with 0 additions and 38 deletions

View File

@ -1,38 +0,0 @@
#!/bin/bash
set -e
for DIRECTORY in "htmlcov" "venv"
do
if [ -d "$DIRECTORY" ]; then
rm -r $DIRECTORY
fi
done
virtualenv --system-site-packages venv
PIP_BIN=venv/bin/pip
rm -f coverage.xml
rm -f test_results.xml
cat << _EOF_ > .coveragerc
[run]
omit = wcs/qommon/vendor/*.py
[report]
omit = wcs/qommon/vendor/*.py
_EOF_
# $PIP_BIN install --upgrade 'pip<8'
$PIP_BIN install --upgrade setuptools
$PIP_BIN install --upgrade 'pytest<4.1' 'attrs<19.2' WebTest mock pytest-cov pyquery pytest-django
$PIP_BIN install --upgrade 'pylint<1.8' # 1.8 broken (cf build #3023)
$PIP_BIN install git+https://git.entrouvert.org/debian/django-ckeditor.git
$PIP_BIN install --upgrade 'Django<1.12' 'gadjo' 'pyproj' 'django-ratelimit<3'
DJANGO_SETTINGS_MODULE=wcs.settings \
WCS_SETTINGS_FILE=tests/settings.py \
LC_ALL=C LC_TIME=C LANG=C \
PYTHONPATH=$(pwd):$PYTHONPATH venv/bin/py.test --junitxml=test_results.xml --cov-report xml --cov-report html --cov=wcs/ --cov-config .coveragerc -v tests/
test -f pylint.out && cp pylint.out pylint.out.prev
(venv/bin/pylint -f parseable --rcfile /var/lib/jenkins/pylint.wcs.rc wcs | tee pylint.out) || /bin/true
test -f pylint.out.prev && (diff pylint.out.prev pylint.out | grep '^[><]' | grep .py) || /bin/true