https://github.com/tensorly/tensorly
Revision 72f040b136c9d93c37312effe64018008c2074e8 authored by Jean Kossaifi on 26 August 2017, 21:56:31 UTC, committed by Jean Kossaifi on 26 August 2017, 21:56:31 UTC
1 parent e49cdfd
Raw File
Tip revision: 72f040b136c9d93c37312effe64018008c2074e8 authored by Jean Kossaifi on 26 August 2017, 21:56:31 UTC
Refactored and updated website
Tip revision: 72f040b
.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