Revision 5e7c87421195305ab688dd53dae61ae131609773 authored by Conley Owens on 04 April 2018, 18:03:08 UTC, committed by Chromium WPT Sync on 04 April 2018, 18:03:08 UTC
This change uses AllResponsesConsumed in the bluetooth Web Platform
Tests in order to make sure we have consumed all the anticipatory
responses that we've set on our fakes.

BUG=569709

Change-Id: I9767792fcd5dda71fabf2f8941638f744aefa2dc
Reviewed-on: https://chromium-review.googlesource.com/988422
Commit-Queue: Conley Owens <cco3@chromium.org>
Reviewed-by: Giovanni Ortuño Urquidi <ortuno@chromium.org>
Cr-Commit-Position: refs/heads/master@{#548125}
1 parent 6a7101f
Raw File
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