https://github.com/tensorly/tensorly
Revision 959c98c541ba340efccac60ab06e0f1193eda17a authored by Jean Kossaifi on 04 August 2017, 06:16:16 UTC, committed by Jean Kossaifi on 22 August 2017, 19:56:43 UTC
1 parent 1bb217a
Raw File
Tip revision: 959c98c541ba340efccac60ab06e0f1193eda17a authored by Jean Kossaifi on 04 August 2017, 06:16:16 UTC
Version 0.2.0 with MXNet backend
Tip revision: 959c98c
.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