-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
114 lines (114 loc) · 2.34 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
language: python
matrix:
include:
- os: linux
dist: trusty
python: 2.7
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: 2.7
env:
- UBUNTU=precise
# - os: linux
# dist: trusty
# python: 3.2
# env:
# - UBUNTU=trusty
# - os: linux
# dist: precise
# python: 3.2
# env:
# - UBUNTU=precise
- os: linux
dist: trusty
python: 3.3
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: 3.3
env:
- UBUNTU=precise
- os: linux
dist: trusty
python: 3.4
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: 3.4
env:
- UBUNTU=precise
- os: linux
dist: trusty
python: 3.5
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: 3.5
env:
- UBUNTU=precise
- os: linux
dist: trusty
python: 3.6
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: 3.6
env:
- UBUNTU=precise
- os: linux
dist: trusty
python: '3.7-dev'
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: '3.7-dev'
env:
- UBUNTU=precise
- os: linux
dist: precise
python: pypy
env:
- UBUNTU=precise
- os: linux
dist: trusty
python: pypy
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: pypy3
env:
- UBUNTU=precise
- os: linux
dist: trusty
python: pypy3
env:
- UBUNTU=trusty
allow_failures:
- os: linux
dist: trusty
python: '3.7-dev'
env:
- UBUNTU=trusty
- os: linux
dist: precise
python: '3.7-dev'
env:
- UBUNTU=precise
- os: linux
dist: precise
python: pypy3
env:
- UBUNTU=precise
install: "pip install coverage python-coveralls" # or "coveralls" instead (alternative package)
# Removing appdirs to increase code coverage... better would be to test both scenarios (with and without appdirs available)
script: python setup.py build && pip install -e . && pip uninstall -y appdirs && coverage run --source=configr configr/test.py && coverage html && coverage annotate configr/test.py
after_success:
- coveralls