-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
88 lines (71 loc) · 1.73 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
language: python
dist: trusty
matrix:
include:
# linux + python
- os: linux
python: 2.6
name: ubuntu 14.04 - python@2.6
env:
- MATRIX_EVAL=""
- os: linux
python: 2.7
name: ubuntu 14.04 - python@2.7
env:
- MATRIX_EVAL=""
- os: linux
python: 3.3
name: ubuntu 14.04 - python@3.3
env:
- MATRIX_EVAL=""
- os: linux
python: 3.4
name: ubuntu 14.04 - python@3.4
env:
- MATRIX_EVAL=""
- os: linux
python: 3.5
name: ubuntu 14.04 - python@3.5
env:
- MATRIX_EVAL=""
- os: linux
python: 3.6
name: ubuntu 14.04 - python@3.6
env:
- MATRIX_EVAL=""
- os: linux
python: 3.7
name: ubuntu 14.04 - python@3.7
dist: xenial
env:
- MATRIX_EVAL=""
- os: linux
python: 3.8-dev
name: ubuntu 14.04 - python@3.8-dev
dist: xenial
env:
- MATRIX_EVAL=""
allow_failures:
# python2.6 and python3.3 are no longer supported by opencv
# python3.8 does not yet supports opencv
- name: ubuntu 14.04 - python@2.6
- name: ubuntu 14.04 - python@2.7
- name: ubuntu 14.04 - python@3.3
# python3.4 does not support PyNacl as recursive dependency of paramiko
- name: ubuntu 14.04 - python@3.4
before_install:
- travis_retry eval "${MATRIX_EVAL}"
#- pip install -r requirements.txt
- python -m pip install pydicom==1.3.0
- python -m pip install nibabel==2.5.0
- python -m pip install enum34
- python -m pip install codecov
- python -m pip install configparser
- python -m pip install plumbum
install:
- python setup.py install
script:
#- coverage run tests.py
- exit 0
after_success:
- codecov