Revision c4b2c08fcdc2664e886be357161da815abb8f2bc authored by Jean Kossaifi on 27 August 2017, 20:04:05 UTC, committed by Jean Kossaifi on 27 August 2017, 20:04:05 UTC
1 parent 72f040b
Raw File
.travis.yml
language: python
dist: trusty
python:
    - "3.5"
    - "3.6"
# command to install dependencies
install: 
    - pip install -r requirements.txt
    - pip install coveralls
env:
    matrix:
        - BACKEND=numpy
        - BACKEND=mxnet
# command to run tests
script:
    - travis_wait make BACKEND=numpy test-coverage
after_success:
    - coveralls
back to top