https://github.com/tensorly/tensorly
Revision 7205bd83fdc56e3c7d14021f2cb2af3129e93b50 authored by Jean Kossaifi on 18 January 2017, 18:02:33 UTC, committed by Jean Kossaifi on 23 January 2017, 19:00:55 UTC
1 parent 41ce484
Raw File
Tip revision: 7205bd83fdc56e3c7d14021f2cb2af3129e93b50 authored by Jean Kossaifi on 18 January 2017, 18:02:33 UTC
New theme for the website.
Tip revision: 7205bd8
.travis.yml
language: python
python:
    - "3.5"
    - "3.6"
# command to install dependencies
install: 
    - pip install -r requirements.txt
    - pip install coveralls
# command to run tests
script:
    - make test-coverage
after_success:
    - coveralls
back to top