forked from goinnn/django-tables2-reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
83 lines (75 loc) · 1.33 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
sudo: false
language: python
cache: pip
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
env:
- DJANGO=1.3
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
- DJANGO=1.11
install:
- pip install -q tox coverage
- coverage erase
script:
- tox -e py${TRAVIS_PYTHON_VERSION//./}-django${DJANGO//./}
after_success:
- coverage combine
- coveralls
matrix:
exclude:
- python: 3.3
env: DJANGO=1.3
- python: 3.3
env: DJANGO=1.4
- python: 3.3
env: DJANGO=1.5
- python: 3.3
env: DJANGO=1.6
- python: 3.3
env: DJANGO=1.7
- python: 3.3
env: DJANGO=1.9
- python: 3.3
env: DJANGO=1.10
- python: 3.3
env: DJANGO=1.11
- python: 3.4
env: DJANGO=1.3
- python: 3.4
env: DJANGO=1.4
- python: 3.4
env: DJANGO=1.5
- python: 3.4
env: DJANGO=1.6
- python: 3.4
env: DJANGO=1.7
- python: 3.5
env: DJANGO=1.3
- python: 3.5
env: DJANGO=1.4
- python: 3.5
env: DJANGO=1.5
- python: 3.5
env: DJANGO=1.6
- python: 3.5
env: DJANGO=1.7
- python: 3.6
env: DJANGO=1.3
- python: 3.6
env: DJANGO=1.4
- python: 3.6
env: DJANGO=1.5
- python: 3.6
env: DJANGO=1.6
- python: 3.6
env: DJANGO=1.7