https://github.com/tensorly/tensorly
Revision cce6751c3a7cdaaa10e3023ad5d809ebf7b2a9ea authored by Jean Kossaifi on 13 February 2017, 20:08:39 UTC, committed by Jean Kossaifi on 13 February 2017, 20:08:39 UTC
1 parent 86ba3b4
Raw File
Tip revision: cce6751c3a7cdaaa10e3023ad5d809ebf7b2a9ea authored by Jean Kossaifi on 13 February 2017, 20:08:39 UTC
DOC: fix math display
Tip revision: cce6751
.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