https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3b96236e022a36ba256dc15e73862a5ec077858d authored by Robert Ma on 16 March 2018, 00:32:55 UTC
Pass the binary path of Chrome to wpt run in CI
Tip revision: 3b96236
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