summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wpt
blob: e0abacd85daa2974b16264a5dd1ecd33cb142c68 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python3

if __name__ == "__main__":
    import sys
    if sys.version_info < (3, 7):
        sys.stderr.write("wpt requires Python 3.7 or higher\n")
        sys.exit(1)

    from tools.wpt import wpt
    wpt.main()