https://github.com/jiwoncpark/baobab
Raw File
Tip revision: 575e21b757989eb86099a47e63a6e3b4b73d1790 authored by jiwoncpark on 02 January 2021, 11:59:12 UTC
Introduce Imager2 for simple images with just source and lens and no metadata output
Tip revision: 575e21b
.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:
  - coverage run -m unittest discover -s baobab/tests

after_success:
  - codecov
  - coveralls
back to top