https://github.com/jiwoncpark/baobab
Revision a92d4aac1b99a824b0a087f1dd7016d463af4cff authored by jiwoncpark on 04 August 2020, 22:12:45 UTC, committed by jiwoncpark on 04 August 2020, 22:12:45 UTC
1 parent cf877fa
Raw File
Tip revision: a92d4aac1b99a824b0a087f1dd7016d463af4cff authored by jiwoncpark on 04 August 2020, 22:12:45 UTC
Stop tracking deleted psf fits files
Tip revision: a92d4aa
.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
  - sudo 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