forked from pmclanahan/django-celery-email
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
163 lines (153 loc) · 6.23 KB
/
.travis.yml
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
language: python
# The current build matrix may be described as follows:
#
# build := (Python version, Django version, Celery version)
#
# where
#
# 2.6 <= Python version <= 3.4 + PyPy
# 1.3 <= Django version <= 1.7
# 2.3 <= Celery version <= 3.1
#
# We skip Celery 2.5 since it doesn't introduce any relevant features
# and the number of build variants is big enough already.
#
# Python 3.3 and PyPy are only supported by Django 1.5+.
# Python 3.3 is only supported by Celery 2.4+.
#
# Python 3.4 is supported by Django 1.7, which also drops 2.6 support.
# Python 3.4 also breaks with Celery <3.1, so drop those combinations.
# (It may actually be that django-celery breaks in 3.4. It's a super edge
# case, so I haven't investigated at all.)
#
# For Celery < 3.1, we additionally need to install django-celery.
#
# Since this kind of build matrix is difficult to encode in a .travis.yml
# file we just present an unrolled version here.
matrix:
include:
# Python 2.6: Django 1.3 to 1.6, Celery 2.3 to 3.1
- python: 2.6
env: INSTALL="Django>=1.3,<1.4 celery>=2.3,<2.4 django-celery django-override-settings"
- python: 2.6
env: INSTALL="Django>=1.3,<1.4 celery>=2.4,<2.5 django-celery django-override-settings"
- python: 2.6
env: INSTALL="Django>=1.3,<1.4 celery>=3.0,<3.1 django-celery django-override-settings"
- python: 2.6
env: INSTALL="Django>=1.3,<1.4 celery>=3.1,<3.2 django-override-settings"
- python: 2.6
env: INSTALL="Django>=1.4,<1.5 celery>=2.3,<2.4 django-celery"
- python: 2.6
env: INSTALL="Django>=1.4,<1.5 celery>=2.4,<2.5 django-celery"
- python: 2.6
env: INSTALL="Django>=1.4,<1.5 celery>=3.0,<3.1 django-celery"
- python: 2.6
env: INSTALL="Django>=1.4,<1.5 celery>=3.1,<3.2"
- python: 2.6
env: INSTALL="Django>=1.5,<1.6 celery>=2.3,<2.4 django-celery"
- python: 2.6
env: INSTALL="Django>=1.5,<1.6 celery>=2.4,<2.5 django-celery"
- python: 2.6
env: INSTALL="Django>=1.5,<1.6 celery>=3.0,<3.1 django-celery"
- python: 2.6
env: INSTALL="Django>=1.5,<1.6 celery>=3.1,<3.2"
- python: 2.6
env: INSTALL="Django>=1.6,<1.7 celery>=2.3,<2.4 django-celery"
- python: 2.6
env: INSTALL="Django>=1.6,<1.7 celery>=2.4,<2.5 django-celery"
- python: 2.6
env: INSTALL="Django>=1.6,<1.7 celery>=3.0,<3.1 django-celery"
- python: 2.6
env: INSTALL="Django>=1.6,<1.7 celery>=3.1,<3.2"
# Python 2.7: Django 1.3 to 1.7, Celery 2.3 to 3.1
- python: 2.7
env: INSTALL="Django>=1.3,<1.4 celery>=2.3,<2.4 django-celery django-override-settings"
- python: 2.7
env: INSTALL="Django>=1.3,<1.4 celery>=2.4,<2.5 django-celery django-override-settings"
- python: 2.7
env: INSTALL="Django>=1.3,<1.4 celery>=3.0,<3.1 django-celery django-override-settings"
- python: 2.7
env: INSTALL="Django>=1.3,<1.4 celery>=3.1,<3.2 django-override-settings"
- python: 2.7
env: INSTALL="Django>=1.4,<1.5 celery>=2.3,<2.4 django-celery"
- python: 2.7
env: INSTALL="Django>=1.4,<1.5 celery>=2.4,<2.5 django-celery"
- python: 2.7
env: INSTALL="Django>=1.4,<1.5 celery>=3.0,<3.1 django-celery"
- python: 2.7
env: INSTALL="Django>=1.4,<1.5 celery>=3.1,<3.2"
- python: 2.7
env: INSTALL="Django>=1.5,<1.6 celery>=2.3,<2.4 django-celery"
- python: 2.7
env: INSTALL="Django>=1.5,<1.6 celery>=2.4,<2.5 django-celery"
- python: 2.7
env: INSTALL="Django>=1.5,<1.6 celery>=3.0,<3.1 django-celery"
- python: 2.7
env: INSTALL="Django>=1.5,<1.6 celery>=3.1,<3.2"
- python: 2.7
env: INSTALL="Django>=1.6,<1.7 celery>=2.3,<2.4 django-celery"
- python: 2.7
env: INSTALL="Django>=1.6,<1.7 celery>=2.4,<2.5 django-celery"
- python: 2.7
env: INSTALL="Django>=1.6,<1.7 celery>=3.0,<3.1 django-celery"
- python: 2.7
env: INSTALL="Django>=1.6,<1.7 celery>=3.1,<3.2"
- python: 2.7
env: INSTALL="Django>=1.7,<1.8 celery>=2.3,<2.4 django-celery"
- python: 2.7
env: INSTALL="Django>=1.7,<1.8 celery>=2.4,<2.5 django-celery"
- python: 2.7
env: INSTALL="Django>=1.7,<1.8 celery>=3.0,<3.1 django-celery"
- python: 2.7
env: INSTALL="Django>=1.7,<1.8 celery>=3.1,<3.2"
# Python 3.3: Django 1.5 to 1.7, Celery 2.4 to 3.1
- python: 3.3
env: INSTALL="Django>=1.5,<1.6 celery>=2.4,<2.5 django-celery"
- python: 3.3
env: INSTALL="Django>=1.5,<1.6 celery>=3.0,<3.1 django-celery"
- python: 3.3
env: INSTALL="Django>=1.5,<1.6 celery>=3.1,<3.2"
- python: 3.3
env: INSTALL="Django>=1.6,<1.7 celery>=2.4,<2.5 django-celery"
- python: 3.3
env: INSTALL="Django>=1.6,<1.7 celery>=3.0,<3.1 django-celery"
- python: 3.3
env: INSTALL="Django>=1.6,<1.7 celery>=3.1,<3.2"
- python: 3.3
env: INSTALL="Django>=1.7,<1.8 celery>=2.4,<2.5 django-celery"
- python: 3.3
env: INSTALL="Django>=1.7,<1.8 celery>=3.0,<3.1 django-celery"
- python: 3.3
env: INSTALL="Django>=1.7,<1.8 celery>=3.1,<3.2"
# Python 3.4: Django 1.7, Celery 3.1
- python: 3.4
env: INSTALL="Django>=1.7,<1.8 celery>=3.1,<3.2"
# PyPy: Django 1.5 to 1.7, Celery 2.3 to 3.1
- python: pypy
env: INSTALL="Django>=1.5,<1.6 celery>=2.3,<2.4 django-celery"
- python: pypy
env: INSTALL="Django>=1.5,<1.6 celery>=2.4,<2.5 django-celery"
- python: pypy
env: INSTALL="Django>=1.5,<1.6 celery>=3.0,<3.1 django-celery"
- python: pypy
env: INSTALL="Django>=1.5,<1.6 celery>=3.1,<3.2"
- python: pypy
env: INSTALL="Django>=1.6,<1.7 celery>=2.3,<2.4 django-celery"
- python: pypy
env: INSTALL="Django>=1.6,<1.7 celery>=2.4,<2.5 django-celery"
- python: pypy
env: INSTALL="Django>=1.6,<1.7 celery>=3.0,<3.1 django-celery"
- python: pypy
env: INSTALL="Django>=1.6,<1.7 celery>=3.1,<3.2"
- python: pypy
env: INSTALL="Django>=1.7,<1.8 celery>=2.3,<2.4 django-celery"
- python: pypy
env: INSTALL="Django>=1.7,<1.8 celery>=2.4,<2.5 django-celery"
- python: pypy
env: INSTALL="Django>=1.7,<1.8 celery>=3.0,<3.1 django-celery"
- python: pypy
env: INSTALL="Django>=1.7,<1.8 celery>=3.1,<3.2"
install:
- pip install $INSTALL
- pip install -r requirements.txt
script: python setup.py test