https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 840ff05dd85ec7867bf4cc17b435bc62039de7fa authored by Navid Zolghadr on 04 April 2018, 16:12:37 UTC
Fix up the touch-action tests
Tip revision: 840ff05
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