https://github.com/tensorly/tensorly
Revision 200dd5b6388438f869426fcc36693037d2574ba5 authored by Jean Kossaifi on 13 February 2017, 20:10:38 UTC, committed by Jean Kossaifi on 13 February 2017, 20:10:38 UTC
1 parent cce6751
Raw File
Tip revision: 200dd5b6388438f869426fcc36693037d2574ba5 authored by Jean Kossaifi on 13 February 2017, 20:10:38 UTC
DOC: minor corrections.
Tip revision: 200dd5b
.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