Revision 6233afaeab32513efe12821a646cd30691756546 authored by Ryosuke Niwa on 19 October 2016, 01:00:15 UTC, committed by Michael[tm] Smith on 19 October 2016, 01:33:38 UTC
.DS_Store is a file Finder on Mac automatically generates like Thumbs.db file on Windows.
1 parent 458d1d1
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