https://github.com/jiwoncpark/baobab
Revision 6f105912ecbca7a1650368a3cac25d9740287100 authored by jiwoncpark on 12 August 2020, 21:23:07 UTC, committed by jiwoncpark on 12 August 2020, 21:23:07 UTC
1 parent 8110de5
Raw File
Tip revision: 6f105912ecbca7a1650368a3cac25d9740287100 authored by jiwoncpark on 12 August 2020, 21:23:07 UTC
Try showing errors for a different config
Tip revision: 6f10591
.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 tensorflow
  - pip install -q torch
  - sudo apt-get install gfortran

install:
  - git clone https://github.com/sibirrer/fastell4py.git
  - cd fastell4py
  - python setup.py install
  - cd ..
  - pip install -e . -r requirements.txt
  - df -h

script:
  - python baobab/generate.py baobab/configs/tdlmc_diagonal_cosmo_config.py --n_data 2
  - coverage run -m unittest discover -s baobab/tests

after_success:
  - codecov
  - coveralls
back to top