welco/tox.ini

31 lines
678 B
INI
Raw Normal View History

2018-07-14 10:36:23 +02:00
[tox]
2019-12-03 14:41:58 +01:00
envlist = py27-django111
2018-07-14 10:36:23 +02:00
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/welco/
[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
deps =
django111: django>=1.11,<1.12
pytest-cov
pytest-django
pytest<4.1
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 =
2019-05-20 14:07:12 +02:00
django111: ./pylint.sh welco/
django111: py.test {posargs: --junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=welco/ tests/}