forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
70 lines (56 loc) · 1.7 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tox]
envlist=py{26,27}-django{14}, py{26,27,33,34}-django{15,16}, py{27,33,34}-django{17,18}, py{27,33,34}-django{16,17,18}-custom
[testenv:docs]
changedir=docs
deps =
sphinx
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:pep8]
deps=pep8
commands=pep8 --repeat --show-source --ignore=E125 --max-line-length=120 --exclude=.venv,.tox,dist,doc,*egg,migrations filer
[testenv]
commands=python test_settings.py
deps=
Pillow<2.6
unidecode
djangocms-helper<=0.8.1
easy-thumbnails>2.0
django14: django<1.5
django14: south
django15: django<1.6
django15: south
django16: django<1.7
django16: south
django17: django<1.8
django18: django<1.9
djangodev: git+git://github.com/django/django.git#egg=Django
py26: unittest2
py26: argparse
[testenv:py27-django16-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py33-django16-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py34-django16-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py27-django17-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py33-django17-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py34-django17-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py27-django18-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py33-django18-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image
[testenv:py34-django18-custom]
setenv =
CUSTOM_IMAGE=filer.test_utils.custom_image.models.Image