https://github.com/jiwoncpark/baobab
Raw File
Tip revision: 74c209347a647bfb37a6a56ede187398f8c4ed2a authored by jiwoncpark on 28 December 2020, 07:18:38 UTC
Publish v0.1.1 to pypi, remove modify_existing
Tip revision: 74c2093
.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