This commit is contained in:
Emmanuel Cazenave 2018-04-25 17:27:09 +02:00
parent 350144d2ce
commit 3af939c056
2 changed files with 5 additions and 6 deletions

View File

@ -7,6 +7,5 @@ virtualenv --python=python2.7 jenkins_venv
test -d wcs || git clone http://git.entrouvert.org/wcs.git
(cd wcs && git pull)
pip install --upgrade tox pylint pylint-django
./pylint.sh combo/
tox -rv -- --junitxml=test_results.xml --cov-report xml --cov=combo/
pip install --upgrade tox
tox -rv

View File

@ -7,7 +7,6 @@ setenv =
WCSCTL=wcs/wcsctl.py
DJANGO_SETTINGS_MODULE=combo.settings
COMBO_SETTINGS_FILE=tests/settings.py
coverage: COVERAGE=--junitxml=test_results.xml --cov-report xml --cov=combo/
deps =
django18: django>=1.8,<1.9
django111: django>=1.11,<1.12
@ -17,11 +16,12 @@ deps =
WebTest
mock
httmock
psycopg2
pylint<1.8
pylint-django<0.9
django-webtest
quixote<3.0
vobject
commands =
py.test {posargs:tests/}
./pylint.sh combo/
py.test {posargs: --junitxml=test_{envname}_results.xml --cov-report xml --cov=combo/ tests/}
django18: ./pylint.sh combo/