https://github.com/jiwoncpark/baobab
Raw File
Tip revision: 2a9a1b3eafbafef925bedab4b3137a3505a9b750 authored by Ji Won Park on 28 January 2021, 17:53:11 UTC
Update README.rst
Tip revision: 2a9a1b3
.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