https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fef5160d5058970b9c50c21c1fb553b5cbb8e713 authored by Yoav Weiss on 27 April 2018, 10:30:26 UTC
Remove catch from WPT destination tests
Tip revision: fef5160
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