https://github.com/jiwoncpark/baobab
Revision d63579e8416da366e4160fd664cc6f080461a5d7 authored by Sebastian Wagner-Carena on 21 August 2020, 19:44:58 UTC, committed by Sebastian Wagner-Carena on 21 August 2020, 19:44:58 UTC
1 parent 8757d7e
Raw File
Tip revision: d63579e8416da366e4160fd664cc6f080461a5d7 authored by Sebastian Wagner-Carena on 21 August 2020, 19:44:58 UTC
forgot a return statement
Tip revision: d63579e
.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