https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3782ba249bb838c02509fea8158ff99be704c3c9 authored by Philip Jägenstedt on 20 October 2016, 12:03:00 UTC
Write more tests for HTMLAllCollection (document.all)
Tip revision: 3782ba2
.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