https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 57efde67960dc7d060e017f27c1a780a6b591f4a authored by moz-wptsync-bot on 13 March 2018, 19:13:26 UTC
Don't use external server in CSS tables test,
Tip revision: 57efde6
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