https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 305c744ad716033069736d66d3ab9374c8a43f51 authored by Darren Shen on 27 March 2018, 09:18:24 UTC
[css-typed-om] Stub list-valued tests.
Tip revision: 305c744
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