Bug 1371358 - Don't check the webdriver binary exists before running wpt tests, r=ato

This ensures that developers can run the majority of tests with the
default config, but makes things a little more confusing for marionette
developers.

MozReview-Commit-ID: 9wd761ZgCyx
This commit is contained in:
James Graham
2017-06-08 18:15:31 +01:00
parent 44b1f23df4
commit c4a3e10f6e

View File

@@ -66,7 +66,7 @@ class WebPlatformTestsRunner(MozbuildObject):
kwargs["capture_stdio"] = True
if kwargs["webdriver_binary"] is None:
kwargs["webdriver_binary"] = self.get_binary_path("geckodriver")
kwargs["webdriver_binary"] = self.get_binary_path("geckodriver", validate_exists=False)
kwargs = wptcommandline.check_args(kwargs)