welco/tox.ini

33 lines
793 B
INI
Raw Normal View History

2018-07-14 10:36:23 +02:00
[tox]
envlist = py27-django111-coverage-pylint,py3-django111,py3-django22
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/welco/{env:BRANCH_NAME:}
2018-07-14 10:36:23 +02:00
[testenv]
usedevelop =
coverage: True
setenv =
DJANGO_SETTINGS_MODULE=welco.settings
2019-05-20 14:07:12 +02:00
WELCO_SETTINGS_FILE=tests/settings.py
2018-07-14 10:36:23 +02:00
fast: FAST=--nomigrations
coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=welco/
2018-07-14 10:36:23 +02:00
deps =
django111: django>=1.11,<1.12
django22: django>=2.2,<2.3
2018-07-14 10:36:23 +02:00
pytest-cov
pytest-django
2020-03-17 19:21:10 +01:00
pytest!=5.3.3
2019-10-02 08:34:02 +02:00
attrs<19.2
2018-07-14 10:36:23 +02:00
WebTest
mock
httmock
python-dateutil
pylint<1.8
2019-05-20 14:07:12 +02:00
pylint-django<0.8.1
django-webtest>=1.9.6
2018-07-14 10:36:23 +02:00
pyquery
lxml
git+https://git.entrouvert.org/debian/django-ckeditor.git
2018-07-14 10:36:23 +02:00
commands =
pylint: ./pylint.sh welco/
py.test {env:COVERAGE:} {posargs:tests/}