[9bc947]: / .travis.yml

Download this file

17 lines (16 with data), 394 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install --upgrade setuptools>=41.0.0
- pip install scipy==1.2.1
- pip install lifelines patsy pytest>=3.6.0 pytest-cov>=2.6.1 codecov
- pip install tensorflow==1.*
- pip install keras==2.2.4
- python setup.py install
# command to run tests
script:
- pytest --cov=maui/
after_success:
- codecov