aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/serve.py
blob: db92a67f44cd1bd04f0309695bcfcbd5efe5c096 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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()