forked from kostyaeremin/django-mail-queue
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
37 lines (33 loc) · 858 Bytes
/
.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
language: python
matrix:
include:
- python: 2.7
env: DJANGO_VERSION=Django==1.8
- python: 2.7
env: DJANGO_VERSION=Django==1.9
- python: 2.7
env: DJANGO_VERSION=Django==1.10
- python: 2.7
env: DJANGO_VERSION=Django==1.11
- python: 3.4
env: DJANGO_VERSION=Django==1.8
- python: 3.4
env: DJANGO_VERSION=Django==1.9
- python: 3.4
env: DJANGO_VERSION=Django==1.10
- python: 3.4
env: DJANGO_VERSION=Django==1.11
- python: 3.4
env: DJANGO_VERSION=Django==2.0
- python: 3.6
env: DJANGO_VERSION=Django==2.1
- python: 3.7
env: DJANGO_VERSION=Django==2.2
# command to install dependencies
install:
- pip install celery>=3.1.23
- pip install -r requirements.txt
- pip install $DJANGO_VERSION
# command to run tests
script:
- py.test mailqueue -x