https://github.com/jiwoncpark/baobab
Revision 022bae0d7c89438bb02212be61942be48fc1707f authored by jiwoncpark on 21 May 2020, 20:12:39 UTC, committed by jiwoncpark on 21 May 2020, 20:12:39 UTC
1 parent cf934e2
Raw File
Tip revision: 022bae0d7c89438bb02212be61942be48fc1707f authored by jiwoncpark on 21 May 2020, 20:12:39 UTC
Switch to PEMD from SPEMD, per lenstronomy update
Tip revision: 022bae0
.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