https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d7db47babb8e6732d39a28346675bd30f5182af0 authored by Xianzhu Wang on 22 March 2018, 20:37:21 UTC
[PE] Add ToInt() for logical padding top and bottom for LayoutTableCell
Tip revision: d7db47b
appveyor.yml
environment:
  global:
    HYPOTHESIS_PROFILE: ci
  matrix:
    - PYTHON: 'C:\\Python27'
    - PYTHON: 'C:\\Python35'
    - PYTHON: 'C:\\Python36'

# Needed to make py.test believe our top level can be imported (we
# otherwise end up in a wpt-tools directory, and of course you cannot
# import a name including a hyphen in Python, so it ignores the fact
# we have a __init__.py at the top level).
clone_folder: 'C:\projects\wpttools'

init:
  - 'git config --global core.autocrlf true'

install:
  - 'rm .git\index'
  - 'git reset --hard'
  - 'SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%'
  - 'git submodule update --init --recursive'
  - 'python.exe -m pip install tox codecov'

build: off

test_script:
  - 'tox -e py'

on_success:
  - 'coverage combine'
  - 'codecov'
back to top