https://github.com/tensorly/tensorly
Revision e1e3c34e96911bd9c03aef81e96669005d47f536 authored by Jean Kossaifi on 06 January 2017, 16:07:58 UTC, committed by Jean Kossaifi on 06 January 2017, 16:07:58 UTC
1 parent 23c6d13
Raw File
Tip revision: e1e3c34e96911bd9c03aef81e96669005d47f536 authored by Jean Kossaifi on 06 January 2017, 16:07:58 UTC
Added python 3.6 and incremented current version.
Tip revision: e1e3c34
.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