https://github.com/tensorly/tensorly
Revision 86ba3b4b4618ade63aef8cdfb1c85a21d6d483e3 authored by Jean Kossaifi on 30 January 2017, 19:36:25 UTC, committed by Jean Kossaifi on 30 January 2017, 19:36:25 UTC
1 parent 7205bd8
Raw File
Tip revision: 86ba3b4b4618ade63aef8cdfb1c85a21d6d483e3 authored by Jean Kossaifi on 30 January 2017, 19:36:25 UTC
DOC: minor theme tweaks.
Tip revision: 86ba3b4
.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