Lines Matching refs:info_dict
319 info_dict = {_ARGS_KEY: ' '.join(args)}
322 info_dict,
324 return json.dumps(info_dict)
329 def _arrange_test_result(info_dict, reporters): argument
353 info_dict[_TEST_RUNNER_KEY] = {}
356 info_dict[_TEST_RESULT_LINK] = reporter.test_result_link
358 runner = info_dict[_TEST_RUNNER_KEY].setdefault(
367 for runner in info_dict[_TEST_RUNNER_KEY]:
368 for group in info_dict[_TEST_RUNNER_KEY][runner]:
370 for status in info_dict[_TEST_RUNNER_KEY][runner][group]:
371 count = len(info_dict[_TEST_RUNNER_KEY][runner][group][status])
375 info_dict[_TEST_RUNNER_KEY][runner][group][_SUMMARY_KEY] = group_summary
376 info_dict[_TOTAL_SUMMARY_KEY] = total_test_group_summary
377 return info_dict