forked from eDIMESLab/MedicalImageAnonymizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
49 lines (38 loc) · 786 Bytes
/
.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
language: python
dist: trusty
matrix:
include:
# linux + python
- os: linux
python: 3.5
name: ubuntu 14.04 - [email protected]
env:
- MATRIX_EVAL=""
- os: linux
python: 3.6
name: ubuntu 14.04 - [email protected]
env:
- MATRIX_EVAL=""
- os: linux
python: 3.7
name: ubuntu 14.04 - [email protected]
dist: xenial
env:
- MATRIX_EVAL=""
- os: linux
python: 3.8
name: ubuntu 14.04 - [email protected]
dist: xenial
env:
- MATRIX_EVAL=""
before_install:
- travis_retry eval "${MATRIX_EVAL}"
- python -m pip install --upgrade pip
- python -m pip install codecov
install:
- python -m pip install .
script:
#- coverage run tests.py
- exit 0
after_success:
- codecov