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