Revision 1b9c3537ad0dea4045bf053d3046830f8130d95c authored by Jean Kossaifi on 12 April 2017, 01:08:52 UTC, committed by Jean Kossaifi on 12 April 2017, 01:08:52 UTC
1 parent da14bf0
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