Revision 72c196ecc4471ace51bc576e2f3018c258366d22 authored by Jean Kossaifi on 06 January 2017, 12:58:11 UTC, committed by Jean Kossaifi on 06 January 2017, 12:58:11 UTC
1 parent 53a8be0
Raw File
.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