https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f45c992c2cad60ea26546707423f8a18d6efcb43 authored by Mustaq Ahmed on 22 November 2018, 14:48:26 UTC
WIP: Fix testdriver clicks to make bluetooth wpt pass with UAv2.
Tip revision: f45c992
serve.py
import sys
import logging

try:
    from tools.serve import serve
except ImportError:
    logging.error("tools.serve not found.  Did you forget to run "
                  '"git submodule update --init --recursive"?')
    sys.exit(2)

def main():
    serve.main()
back to top