-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
90 lines (87 loc) · 2.29 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
language: python
matrix:
include:
# Python 2.6 is supported by Django < 1.7
- python: 2.6
env: DJANGO_VERSION=1.4.22
- python: 2.6
env: DJANGO_VERSION=1.5.12
- python: 2.6
env: DJANGO_VERSION=1.6.11
# Python 2.7 is supported by Django < 2.0
- python: 2.7
env: DJANGO_VERSION=1.4.22
- python: 2.7
env: DJANGO_VERSION=1.5.12
- python: 2.7
env: DJANGO_VERSION=1.6.11
- python: 2.7
env: DJANGO_VERSION=1.7.11
- python: 2.7
env: DJANGO_VERSION=1.8.19
- python: 2.7
env: DJANGO_VERSION=1.9.13
- python: 2.7
env: DJANGO_VERSION=1.10.8
- python: 2.7
env: DJANGO_VERSION=1.11.15
# Python 3.3 is supported by Django >= 1.5 and Django < 1.9
- python: 3.3
env: DJANGO_VERSION=1.5.12
- python: 3.3
env: DJANGO_VERSION=1.6.11
- python: 3.3
env: DJANGO_VERSION=1.7.11
- python: 3.3
env: DJANGO_VERSION=1.8.19
# Python 3.4 is supported by Django >= 1.5 and Django < 1.11
- python: 3.4
env: DJANGO_VERSION=1.5.12
- python: 3.4
env: DJANGO_VERSION=1.6.11
- python: 3.4
env: DJANGO_VERSION=1.7.11
- python: 3.4
env: DJANGO_VERSION=1.8.19
- python: 3.4
env: DJANGO_VERSION=1.9.13
- python: 3.4
env: DJANGO_VERSION=1.10.8
# Python 3.5 is supported by Django >= 1.8
- python: 3.5
env: DJANGO_VERSION=1.8.19
- python: 3.5
env: DJANGO_VERSION=1.9.13
- python: 3.5
env: DJANGO_VERSION=1.10.8
- python: 3.5
env: DJANGO_VERSION=1.11.15
- python: 3.5
env: DJANGO_VERSION=2.0.8
- python: 3.5
env: DJANGO_VERSION=2.1
# Python 3.6 is supported by Django >= 1.11
- python: 3.6
env: DJANGO_VERSION=1.11.15
- python: 3.6
env: DJANGO_VERSION=2.0.8
- python: 3.6
env: DJANGO_VERSION=2.1
# Python 3.7 is supported by Django >= 2.0
# The dist and sudo are needed to run 3.7
# on Travis until 3.7 is officially supported.
- python: 3.7
env: DJANGO_VERSION=2.0.8
dist: xenial
sudo: true
- python: 3.7
env: DJANGO_VERSION=2.1
dist: xenial
sudo: true
install:
- pip install --pre -q Django==$DJANGO_VERSION
- pip install -r requirements.txt
- pip install .
script:
- make lint
- make test