forked from awesto/django-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
96 lines (85 loc) · 1.75 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tox]
envlist =
py27-1.4,
py27-1.5,
py27-1.6,
py27-1.7,
py27-trunk
[default]
deps =
django>=1.4,<1.5
django-classy-tags==0.3.3
django-polymorphic==0.2
south==0.7.2
jsonfield==0.9.6
[django-1.5]
deps =
django>=1.5,<1.6
django-classy-tags>=0.5,<0.6
django-polymorphic>=0.6,<0.7
south>=1.0,<1.1
jsonfield>=1.0,<1.1
[django-1.6]
deps =
django>=1.6,<1.7
django-classy-tags>=0.5,<0.6
django-polymorphic>=0.6,<0.7
south>=1.0,<1.1
jsonfield>=1.0,<1.1
[django-1.7]
deps =
django>=1.7,<1.8
django-classy-tags>=0.5,<0.6
django-polymorphic>=0.6,<0.7
jsonfield>=1.0,<1.1
# probably broken, allow for failure
[trunk]
deps =
git+https://github.com/django/django.git
git+https://github.com/ojii/django-classy-tags.git
git+https://github.com/chrisglass/django_polymorphic.git
git+https://github.com/bradjasper/django-jsonfield.git
[testenv]
basepython = python2.7
deps =
django>=1.4,<1.5
{[default]deps}
setenv =
DJANGO_SETTINGS_MODULE = settings
PYTHONPATH = {toxinidir}/tests:{toxinidir}/tests/testapp
commands = ./runtests.py {posargs}
[testenv:py27-1.4]
basepython = python2.7
setenv =
{[testenv]setenv}
TESTENV = py27-1.4
deps =
{[default]deps}
[testenv:py27-1.5]
basepython = python2.7
setenv =
{[testenv]setenv}
TESTENV = py27-1.5
deps =
{[django-1.5]deps}
[testenv:py27-1.6]
basepython = python2.7
setenv =
{[testenv]setenv}
TESTENV = py27-1.6
deps =
{[django-1.6]deps}
[testenv:py27-1.7]
basepython = python2.7
setenv =
{[testenv]setenv}
TESTENV = py27-1.7
deps =
{[django-1.7]deps}
[testenv:py27-trunk]
basepython = python2.7
setenv =
{[testenv]setenv}
TESTENV = py27-trunk
deps =
{[trunk]deps}