https://github.com/tensorly/tensorly
Revision 41ce484c66ca8d1690709439cee87feb3136860f authored by Jean Kossaifi on 06 January 2017, 16:52:58 UTC, committed by Jean Kossaifi on 06 January 2017, 16:52:58 UTC
1 parent e06106f
Raw File
Tip revision: 41ce484c66ca8d1690709439cee87feb3136860f authored by Jean Kossaifi on 06 January 2017, 16:52:58 UTC
DOC: Left out file.
Tip revision: 41ce484
.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