Skip to content
Snippets Groups Projects
Commit 72376da8 authored by Craig Tiller's avatar Craig Tiller
Browse files

Get json_run_localhost working again

parent 9e3691c5
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,8 @@ def _scenario_json_string(scenario_json): ...@@ -47,7 +47,8 @@ def _scenario_json_string(scenario_json):
# tweak parameters to get fast test times # tweak parameters to get fast test times
scenario_json['warmup_seconds'] = 1 scenario_json['warmup_seconds'] = 1
scenario_json['benchmark_seconds'] = 10 scenario_json['benchmark_seconds'] = 10
return json.dumps(scenario_config.remove_nonproto_fields(scenario_json)) scenarios_json = {'scenarios': [scenario_config.remove_nonproto_fields(scenario_json)]}
return json.dumps(scenarios_json)
def threads_of_type(scenario_json, path): def threads_of_type(scenario_json, path):
d = scenario_json d = scenario_json
...@@ -72,7 +73,7 @@ print yaml.dump({ ...@@ -72,7 +73,7 @@ print yaml.dump({
{ {
'name': 'json_run_localhost', 'name': 'json_run_localhost',
'shortname': 'json_run_localhost:%s' % scenario_json['name'], 'shortname': 'json_run_localhost:%s' % scenario_json['name'],
'args': ['--scenario_json', 'args': ['--scenarios_json',
pipes.quote(_scenario_json_string(scenario_json))], pipes.quote(_scenario_json_string(scenario_json))],
'ci_platforms': ['linux', 'mac', 'posix', 'windows'], 'ci_platforms': ['linux', 'mac', 'posix', 'windows'],
'platforms': ['linux', 'mac', 'posix', 'windows'], 'platforms': ['linux', 'mac', 'posix', 'windows'],
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment