Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Fixup servo[driver] host.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Sep 23, 2015
1 parent 96f88fc commit e07996c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion wptrunner/browsers/servo.py
Expand Up @@ -37,8 +37,10 @@ def executor_kwargs(test_type, server_config, cache_manager, run_info_data,
rv["pause_after_test"] = kwargs["pause_after_test"]
return rv


def env_options():
return {"host": "localhost",
return {"host": "127.0.0.1",
"external_host": "web-platform.test",
"bind_hostname": "true",
"testharnessreport": "testharnessreport-servo.js",
"supports_debugger": True}
Expand Down
3 changes: 2 additions & 1 deletion wptrunner/browsers/servodriver.py
Expand Up @@ -49,7 +49,8 @@ def executor_kwargs(test_type, server_config, cache_manager, run_info_data, **kw


def env_options():
return {"host": "web-platform.test",
return {"host": "127.0.0.1",
"external_host": "web-platform.test",
"bind_hostname": "true",
"testharnessreport": "testharnessreport-servodriver.js",
"supports_debugger": True}
Expand Down

0 comments on commit e07996c

Please sign in to comment.