https://github.com/tensorly/tensorly
Revision 7c59ea62e640f7452ea9e45d6cf9bcb2b3e298a2 authored by Jean Kossaifi on 13 December 2016, 16:23:28 UTC, committed by Jean Kossaifi on 13 December 2016, 16:54:18 UTC
1 parent 471c643
Raw File
Tip revision: 7c59ea62e640f7452ea9e45d6cf9bcb2b3e298a2 authored by Jean Kossaifi on 13 December 2016, 16:23:28 UTC
Add coverage with coveralls
Tip revision: 7c59ea6
.travis.yml
language: python
python:
    - "3.5"
# 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