https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9868ad502b989cff5d9a64ac8c0fee9c98f3a5b8 authored by Andy Paicu on 23 March 2018, 15:46:19 UTC
Remove browsing context name on cross origin navigation
Tip revision: 9868ad5
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