https://github.com/jiwoncpark/baobab
Revision b8c8163282a443b9bb13c8582549cb20ec799f1a authored by Sebastian Wagner-Carena on 03 August 2020, 18:45:12 UTC, committed by Sebastian Wagner-Carena on 03 August 2020, 18:45:12 UTC
1 parent 09bc57f
Raw File
Tip revision: b8c8163282a443b9bb13c8582549cb20ec799f1a authored by Sebastian Wagner-Carena on 03 August 2020, 18:45:12 UTC
fixed everything except test on ADU comparison in noise and issue with passing kwargs for lens equation to TDCosmography class in lenstronomy
Tip revision: b8c8163
.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
  - sudo apt-get install gfortran

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

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

after_success:
  - codecov
  - coveralls
back to top