https://github.com/web-platform-tests/wpt
Revision c050814c692c5e59194d4bf5b5d20f1bbf92397f authored by Simon Pieters on 19 December 2016, 13:33:32 UTC, committed by Simon Pieters on 19 December 2016, 13:33:32 UTC
1 parent db7571a
Raw File
Tip revision: c050814c692c5e59194d4bf5b5d20f1bbf92397f authored by Simon Pieters on 19 December 2016, 13:33:32 UTC
Test that the snapshotting happens at document creation time
Tip revision: c050814
.travis.yml
dist: trusty
language: python
addons:
  hosts:
    - web-platform.test
    - www.web-platform.test
    - www1.web-platform.test
    - www2.web-platform.test
    - xn--n8j6ds53lwwkrqhv28a.web-platform.test
    - xn--lve-6lad.web-platform.test
before_install:
  - git submodule update --init --recursive
  - export DISPLAY=:99.0
  - sh -e /etc/init.d/xvfb start
install:
  - pip install -U setuptools
  - pip install -U requests
matrix:
  include:
    - os: linux
      python: "2.7"
      env:
        - SCRIPT=ci_lint.sh
    - os: linux
      python: "2.7"
      addons:
        apt:
          packages:
            - libnss3-tools
      env:
        - secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbnJ/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3jAmmuCgAgOW6VGf7cRMucrsmFeo7VM="
        - SCRIPT=ci_stability.sh
        - PRODUCT=firefox
    - os: linux
      sudo: required
      python: "2.7"
      addons:
        apt:
          packages:
            - libappindicator1
            - fonts-liberation
      env:
        - secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbnJ/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3jAmmuCgAgOW6VGf7cRMucrsmFeo7VM="
        - SCRIPT=ci_stability.sh
        - PRODUCT=chrome
script:
  - bash $SCRIPT
notifications:
  email:
    on_success: never
    on_failure: always
back to top