https://github.com/jiwoncpark/baobab
Revision 0664c7e6f095f7530d1491398e5573cd12f9cdbd authored by jiwoncpark on 21 May 2020, 20:13:37 UTC, committed by jiwoncpark on 21 May 2020, 20:13:37 UTC
1 parent 022bae0
Raw File
Tip revision: 0664c7e6f095f7530d1491398e5573cd12f9cdbd authored by jiwoncpark on 21 May 2020, 20:13:37 UTC
Make velocity dispersion the latent variable for theta_E, gamma, q
Tip revision: 0664c7e
.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