https://github.com/web-platform-tests/wpt
Revision 53471db264ae122b5388b0a9fa09ad24ed74b0ea authored by James Graham on 14 March 2018, 16:27:33 UTC, committed by James Graham on 14 March 2018, 17:05:43 UTC
The tests were failing with some kind of Chromedriver/Chrome version
mismatch, so we can't block on these tests until that issue is fixed.
1 parent 1d41dd1
Raw File
Tip revision: 53471db264ae122b5388b0a9fa09ad24ed74b0ea authored by James Graham on 14 March 2018, 16:27:33 UTC
Stop running Chrome wptrunner infrastructure tests for bustage
Tip revision: 53471db
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