Lines Matching refs:configs
70 self.configs = None
82 def init_pipeline_runner(self, run_list, configs, devices, upload_result_handler):
86 self.configs = configs
95 self._repeat = self.configs.get("request").config.repeat
96 self._repeat_round = self.configs.get("request").get_repeat_round()
109 self.log.debug("configs:{}".format(self.configs))
110 testcases_path = self.configs.get('testcases_path', "")
111 testargs = self.configs.get("testargs", {})
117 self.project.set_task_report_dir(self.configs.get("report_path"))
176 self.configs["log"] = self.log
177 self.configs["devices"] = self.devices
178 self.configs["project"] = self.project
191 self.project, self.configs,
253 with test_cls(self.configs) as test_cls_instance:
281 environment = self.configs.get("request").config.environment
348 def __init__(self, suite, configs, devices):
351 self.configs = configs
355 self.listeners = self.configs["listeners"]
360 self.configs["log"] = self.log
361 self.configs["devices"] = self.devices
362 self.configs["suite_name"] = self.suite_name
389 self.configs["cur_suite"] = test_cls
390 with test_cls(self.configs, suite_dir_path) as test_cls_instance:
400 result_path = os.path.join(self.configs["report_path"], "result")