https://github.com/tensorly/tensorly
Revision d59fb75f5572509100f3c7eab2eabd39ca498500 authored by Jean Kossaifi on 10 March 2017, 20:39:24 UTC, committed by Jean Kossaifi on 10 March 2017, 20:39:24 UTC
1 parent 03f886c
Raw File
Tip revision: d59fb75f5572509100f3c7eab2eabd39ca498500 authored by Jean Kossaifi on 10 March 2017, 20:39:24 UTC
DOC: updated API doc for random module.
Tip revision: d59fb75
.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