Adjust WPT manifest update python path to unbreak automated sync.

This commit is contained in:
Josh Matthews 2018-05-02 13:35:08 -04:00
parent 245dcc2118
commit 49b971abf1

View file

@ -13,7 +13,7 @@ here = os.path.split(__file__)[0]
sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools", "wptrunner")))
sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools", "wptserve")))
sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "tests", "tools", "scripts")))
sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools")))
from wptrunner.update import setup_logging, WPTUpdate
from wptrunner.update.base import exit_unclean