https://github.com/tensorly/tensorly
Revision 3bb12501b0c69303c05e69d2f8529550ef8e7bf9 authored by Jean Kossaifi on 14 July 2017, 03:02:25 UTC, committed by Jean Kossaifi on 14 July 2017, 03:02:25 UTC
1 parent d365bdb
Raw File
Tip revision: 3bb12501b0c69303c05e69d2f8529550ef8e7bf9 authored by Jean Kossaifi on 14 July 2017, 03:02:25 UTC
fix random state
Tip revision: 3bb1250
.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