forked from jazzband/django-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (36 loc) · 844 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
language: python
python:
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO="django==1.8.2"
- DJANGO="django==1.7.8"
- DJANGO="django==1.6.11"
- DJANGO="django==1.5.12"
- DJANGO="django==1.4.20"
matrix:
exclude:
- python: "3.3"
env: DJANGO="django==1.4.20"
- python: "3.4"
env: DJANGO="django==1.4.20"
install:
- pip install $DJANGO --use-mirrors
- pip install redis==2.10.3 --use-mirrors
- pip install mock==1.0.1
- pip install msgpack-python>=0.4.6
script:
- (cd tests && python runtests.py)
- (cd tests && python runtests-sharded.py)
- (cd tests && python runtests-herd.py)
- (cd tests && python runtests-json.py)
- (cd tests && python runtests-msgpack.py)
services:
- redis-server
notifications:
email:
recipients:
on_success: change
on_failure: change