https://github.com/jiwoncpark/baobab
Revision 59917da8d19b83effa7cd909fc1c38c8d5312b22 authored by jiwoncpark on 24 June 2020, 09:49:37 UTC, committed by jiwoncpark on 24 June 2020, 09:49:37 UTC
1 parent 239873b
Raw File
Tip revision: 59917da8d19b83effa7cd909fc1c38c8d5312b22 authored by jiwoncpark on 24 June 2020, 09:49:37 UTC
Init ImageModel to work in the no-AGN case
Tip revision: 59917da
.travis.yml
language: python

python:
    - '3.6'

compiler:
    - g++
   
cache:
    ccache: true
    pip: true

before_install:
  - which pip
  - pip install -q coveralls
  - pip install -q python-coveralls
  - pip install -q tensorflow
  - pip install -q torch 

install:
  - pip install -e . -r requirements.txt
  - df -h

script:
  - coverage run -m unittest discover -s baobab/tests

after_success:
  - codecov
  - coveralls
back to top