Revision 00fcdc8ddaa1c1d9bf75d26be79e84f669314ee5 authored by Domenic Denicola on 20 October 2016, 18:20:23 UTC, committed by Domenic Denicola on 20 October 2016, 18:20:23 UTC
1 parent b093db8
Raw File
.travis.yml
sudo: false # cause Travis to start builds much faster
language: python
python:
  - "2.7"
before_install:
  - git submodule update --init --recursive
# command to run tests, e.g. python setup.py test
script:
  - ./lint
  - ./manifest
  - ./diff-manifest.py
notifications:
  email:
    on_success: never
    on_failure: always
back to top