swh:1:snp:1c3b4a274d5738af4157f693e28fbbb196a2bcfd
Raw File
Tip revision: 23c6d135ae81f12205d4d57c22652628ecc2adf1 authored by Jean Kossaifi on 06 January 2017, 13:34:08 UTC
Better github ribbon (especially for mobiles)
Tip revision: 23c6d13
.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