https://github.com/jiwoncpark/baobab
Revision 5911c6af0d0bcc1f38363dc7227b0402228d1484 authored by jiwoncpark on 24 June 2020, 10:14:40 UTC, committed by jiwoncpark on 24 June 2020, 10:14:40 UTC
1 parent 936e902
Raw File
Tip revision: 5911c6af0d0bcc1f38363dc7227b0402228d1484 authored by jiwoncpark on 24 June 2020, 10:14:40 UTC
Spell out fastell4py install
Tip revision: 5911c6a
.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 
  - 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