forked from bameda/djmail
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
53 lines (38 loc) · 822 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
sudo: false
language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO="django==1.8.5"
- DJANGO="django==1.7.10"
- DJANGO="django==1.6.11"
- DJANGO="django==1.5.12"
- DJANGO="django==1.4.22"
matrix:
exclude:
- python: "3.5"
env: DJANGO="django==1.7.10"
- python: "3.5"
env: DJANGO="django==1.6.11"
- python: "3.5"
env: DJANGO="django==1.5.12"
- python: "3.5"
env: DJANGO="django==1.4.22"
- python: "3.4"
env: DJANGO="django==1.4.22"
- python: "3.3"
env: DJANGO="django==1.4.22"
install:
- pip install $DJANGO
- pip install psycopg2==2.6.1
- pip install django-celery==3.1.17
- pip install futures # For python 2.7
services:
- postgresql
before_script:
- createdb test
script:
- python runtests.py