https://github.com/tensorly/tensorly
Raw File
Tip revision: c4b2c08fcdc2664e886be357161da815abb8f2bc authored by Jean Kossaifi on 27 August 2017, 20:04:05 UTC
Updated doc and website
Tip revision: c4b2c08
.travis.yml
language: python
dist: trusty
python:
    - "3.5"
    - "3.6"
# command to install dependencies
install: 
    - pip install -r requirements.txt
    - pip install coveralls
env:
    matrix:
        - BACKEND=numpy
        - BACKEND=mxnet
# command to run tests
script:
    - travis_wait make BACKEND=numpy test-coverage
after_success:
    - coveralls
back to top