forked from jazzband/django-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (55 loc) · 1.37 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
sudo: false
language: python
cache: pip
matrix:
include:
- python: 2.7
env: DJANGO="Django>=1.8,<1.9"
- python: 3.3
env: DJANGO="Django>=1.8,<1.9"
- python: 3.4
env: DJANGO="Django>=1.8,<1.9"
- python: 3.5
env: DJANGO="Django>=1.8,<1.9"
- python: 2.7
env: DJANGO="Django>=1.10,<1.11"
- python: 3.4
env: DJANGO="Django>=1.10,<1.11"
- python: 3.5
env: DJANGO="Django>=1.10,<1.11"
- python: 2.7
env: DJANGO="Django>=1.11,<2.0"
- python: 3.4
env: DJANGO="Django>=1.11,<2.0"
- python: 3.5
env: DJANGO="Django>=1.11,<2.0"
- python: 3.6
env: DJANGO="Django>=1.11,<2.0"
- python: 3.4
env: DJANGO="Django>=2.0,<2.1"
- python: 3.5
env: DJANGO="Django>=2.0,<2.1"
- python: 3.6
env: DJANGO="Django>=2.0,<2.1"
install:
- pip install $DJANGO
- pip install -r requirements.txt
before_script:
- flake8 django_redis tests
- isort --check-only --diff --recursive django_redis tests
script:
- python tests/runtests.py
- python tests/runtests-sharded.py
- python tests/runtests-herd.py
- python tests/runtests-json.py
- python tests/runtests-msgpack.py
- python tests/runtests-zlib.py
- python tests/runtests-lz4.py
services:
- redis-server
notifications:
email:
recipients:
- niwi@niwi.be
on_success: change
on_failure: change