Revision b48e724a6d12dda362e67055ac4c9028d5a1855b authored by Boris Zbarsky on 06 October 2016, 17:59:55 UTC, committed by jgraham on 07 October 2016, 12:07:53 UTC
Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1297304
1 parent 7881ef5
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