https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 6a982a6dc2ac566edc9303da6a306bc94c86ce36 authored by Darren Shen on 12 April 2018, 07:12:11 UTC
[css-typed-om] Support remaining multi-col properties.
Tip revision: 6a982a6
.travis.yml
language: python

sudo: false

cache:
  directories:
    - $HOME/.cache/pip

matrix:
  include:
  - python: 2.7
    env: TOXENV=py27
  - python: pypy
    env: TOXENV=pypy

install:
  - pip install -U tox codecov

script:
  - tox

after_success:
  - coverage combine
  - codecov
back to top