v. 0.2.
[django-ssify.git] / tox.ini
1 # This file is part of django-ssify, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See README.md for more information.
3 #
4 [tox]
5 envlist=clear,
6     d15-py26, d15-py27, d15-py32, d15-py33,
7     d16-py26, d16-py27, d16-py32, d16-py33,
8     d17-py27, d17-py32, d17-py33, d17-py34,
9     dd-py27, dd-py32, dd-py33, dd-py34,
10     stats
11
12 [testenv]
13 indexserver=http://py.mdrn.pl
14 commands=coverage run --source=ssify --append --branch runtests.py
15 deps=coverage
16
17 [testenv:clear]
18 commands=coverage erase
19
20 [testenv:stats]
21 commands=coverage html
22
23 [base]
24
25 [testenv:d15-py26]
26 basepython=python2.6
27 deps=
28     Django>=1.5,<1.6
29     {[testenv]deps}
30
31 [testenv:d15-py27]
32 basepython=python2.7
33 deps=
34     Django>=1.5,<1.6
35     {[testenv]deps}
36
37 [testenv:d15-py32]
38 basepython=python3.2
39 deps=
40     Django>=1.5,<1.6
41     {[testenv]deps}
42
43 [testenv:d15-py33]
44 basepython=python3.3
45 deps=
46     Django>=1.5,<1.6
47     {[testenv]deps}
48
49 [testenv:d16-py26]
50 basepython=python2.6
51 deps=
52     Django>=1.6,<1.7
53     {[testenv]deps}
54
55 [testenv:d16-py27]
56 basepython=python2.7
57 deps=
58     Django>=1.6,<1.7
59     {[testenv]deps}
60
61 [testenv:d16-py32]
62 basepython=python3.2
63 deps=
64     Django>=1.6,<1.7
65     {[testenv]deps}
66
67 [testenv:d16-py33]
68 basepython=python3.3
69 deps=
70     Django>=1.6,<1.7
71     {[testenv]deps}
72
73 [testenv:d17-py27]
74 basepython=python2.7
75 deps=
76     https://www.djangoproject.com/download/1.7c3/tarball/
77     {[testenv]deps}
78
79 [testenv:d17-py32]
80 basepython=python3.2
81 deps=
82     Django>=1.7,<1.8
83     {[testenv]deps}
84
85 [testenv:d17-py33]
86 basepython=python3.3
87 deps=
88     Django>=1.7,<1.8
89     {[testenv]deps}
90
91 [testenv:d17-py34]
92 basepython=python3.4
93 deps=
94     Django>=1.7,<1.8
95     {[testenv]deps}
96
97 [testenv:dd-py27]
98 basepython=python2.7
99 deps=
100     https://github.com/django/django/zipball/master
101     {[testenv]deps}
102
103 [testenv:dd-py32]
104 basepython=python3.2
105 deps=
106     https://github.com/django/django/zipball/master
107     {[testenv]deps}
108
109 [testenv:dd-py33]
110 basepython=python3.3
111 deps=
112     https://github.com/django/django/zipball/master
113     {[testenv]deps}
114
115 [testenv:dd-py34]
116 basepython=python3.4
117 deps=
118     https://github.com/django/django/zipball/master
119     {[testenv]deps}