Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade wptrunner #12223

Closed
wants to merge 8 commits into from

Upgrade wptrunner to dd8ba1a0710c476ec4f56f78db87f634762085ee.

  • Loading branch information
jdm committed Jul 7, 2016
commit c82f9e6c4cec73d8945110be2450c854242eff80
@@ -2,4 +2,3 @@ html5lib >= 0.99
mozinfo >= 0.7
mozlog >= 3.0
mozdebug >= 0.1
pytest >= 2.9
@@ -1,2 +1 @@
mozprocess >= 0.19
pytest >= 2.9
@@ -224,10 +224,7 @@ def screenshot(self, test, viewport_size, dpi):
for pref in test.environment.get('prefs', {}):
command += ["--pref", pref]

if viewport_size:
command += ["--resolution", viewport_size]
else:
command += ["--resolution", "800x600"]
command += ["--resolution", viewport_size or "800x600"]

if dpi:
command += ["--device-pixel-ratio", dpi]
@@ -8,7 +8,7 @@ setup(props);

add_completion_callback(function (tests, harness_status) {
var id = location.pathname + location.search + location.hash;
alert("RESULT: " + JSON.stringify([
console.log("ALERT RESULT: " + JSON.stringify([
id,
harness_status.status,
harness_status.message,
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.