https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f234546e7a085b82058d2ab0b43b3396e256405c authored by Ovidio Henriquez on 23 March 2018, 17:54:47 UTC
bluetooth: Impl. setNextWriteResponse (descriptor)
Tip revision: f234546
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