forked from griffithlab/pVACtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
94 lines (94 loc) · 3.23 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
matrix:
include:
- name: "Python 3.5"
language: python
sudo: required
dist: xenial
python:
- 3.5
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y ghostscript
- sudo apt-get install -y gcc
install:
- pip install Cython
- pip install swagger-spec-validator==2.1.0
- pip install connexion==1.4.2
- pip install bokeh==0.13.0
- pip install tornado==5.0.2
- pip install jsonschema==2.6.0
- pip install mhcnuggets==2.2
- pip install mhcflurry==1.4.3
- pip install tensorflow==1.14.0
- pip install keras==2.2.5
- pip install Werkzeug==0.16.1
- pip install biopython==1.76
- pip install coveralls
- pip install -e .
- mhcflurry-downloads fetch
services:
- postgresql
script:
- TEST_FLAG=1 coverage run --source=lib,tools -m unittest discover -v
after_success:
- coveralls
- name: "Python 3.6"
language: python
sudo: required
dist: xenial
python: 3.6
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y ghostscript
- sudo apt-get install -y gcc
install:
- pip install swagger-spec-validator==2.1.0
- pip install connexion==1.4.2
- pip install bokeh==0.13.0
- pip install tornado==5.0.2
- pip install jsonschema==2.6.0
- pip install mhcnuggets==2.2
- pip install mhcflurry==1.4.3
- pip install tensorflow==1.14.0
- pip install keras==2.2.5
- pip install pandas==0.25.2
- pip install Werkzeug==0.16.1
- pip install coveralls
- pip install -e .
- mhcflurry-downloads fetch
services:
- postgresql
script:
- TEST_FLAG=1 coverage run --source=lib,tools -m unittest discover -v
after_success:
- coveralls
- name: "Python 3.7"
language: python
sudo: required
dist: xenial
python: 3.7
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y ghostscript
- sudo apt-get install -y gcc
install:
- pip install swagger-spec-validator==2.1.0
- pip install connexion==1.4.2
- pip install bokeh==0.13.0
- pip install tornado==5.0.2
- pip install jsonschema==2.6.0
- pip install mhcnuggets==2.2
- pip install mhcflurry==1.4.3
- pip install tensorflow==1.14.0
- pip install keras==2.2.5
- pip install pandas==0.25.2
- pip install Werkzeug==0.16.1
- pip install coveralls
- pip install -e .
- mhcflurry-downloads fetch
services:
- postgresql
script:
- TEST_FLAG=1 coverage run --source=lib,tools -m unittest discover -v
after_success:
- coveralls