Revision 217dcf139f92410b556f50f420d4e4cefa85bf86 authored by Adam Rice on 27 February 2017, 19:51:55 UTC, committed by Domenic Denicola on 27 February 2017, 19:51:55 UTC
Use the name "ReadableStreamDefaultReader" for the default reader in tests to
match the standard. Also change the test filenames from readable-stream-reader.*
to default-reader.*.
1 parent ebff944
Raw File
.travis.yml
dist: trusty
sudo: required
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"
      env:
        - SCRIPT=ci_built_diff.sh
    - os: linux
      python: "2.7"
      addons:
        apt:
          packages:
            - libnss3-tools
      env:
        - secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbnJ/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3jAmmuCgAgOW6VGf7cRMucrsmFeo7VM="
        - SCRIPT=ci_stability.sh
        - PRODUCT=firefox:nightly
    - 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:unstable
script:
  - bash $SCRIPT
cache:
  directories:
    - $HOME/.cache/pip
notifications:
  email:
    on_success: never
    on_failure: always
  webhooks: https://w3c-test.org/prbuildbot.py
back to top