Revision 0a9f67b4b4bd288ee44da0318bf8a88c74885692 authored by Brian Birtles on 06 October 2016, 18:00:05 UTC, committed by jgraham on 07 October 2016, 12:23:13 UTC
I suspect we're hitting trouble when the refresh driver changes timer and we
end up with less time between frames.

MozReview-Commit-ID: I2dProiJTfh

Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1297285
1 parent cc90917
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