Revision da14bf07af4de1d94ca3b3f41168620bf5c8f775 authored by Jean Kossaifi on 12 April 2017, 00:52:08 UTC, committed by Jean Kossaifi on 12 April 2017, 00:52:08 UTC
1 parent 58ea0fd
Raw File
.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