Revision 933a7cc1f68ee44bf6fef35b0eff036124548dff authored by Anne van Kesteren on 13 October 2016, 14:17:24 UTC, committed by Ms2ger on 20 October 2016, 12:29:28 UTC
This is testing some of the scenarios discussed in
https://github.com/whatwg/dom/issues/325 and specified in
https://github.com/whatwg/dom/pull/342.
1 parent d36bd31
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