Searched refs:test_view (Results 1 – 4 of 4) sorted by relevance
/external/autotest/site_utils/ |
D | perf_csv_uploader.py | 65 def __init__(self, test_attribute_id, perf_csv_folder, test_view): argument 77 self.test_view = test_view 81 return '%s:%s:%s' % (self.test_view.job_name, self.test_view.job_tag, 93 return os.path.join(self.gs_path, self.test_view.job_tag) 130 self.test_view.test_name, self.test_view.hostname, 131 str(self.test_view.job_finished_time.year), 132 str(self.test_view.job_finished_time.month).zfill(2), 133 str(self.test_view.job_finished_time.day).zfill(2), 134 str(self.test_view.job_finished_time.hour).zfill(2), 135 str(self.test_view.job_finished_time.minute).zfill(2))
|
D | run_suite.py | 347 def __init__(self, test_view, retry_count=0): argument 353 self.name = test_view.get_testname() 354 self.status = test_view['status'] 355 self.reason = test_view['reason'] 1354 for test_view in self._test_views: 1356 test_view=test_view, 1357 retry_count=self._retry_counts.get(test_view['test_idx'], 0))
|
/external/autotest/frontend/tko/ |
D | rpc_interface.py | 120 test_view = test_views[test_idx] 122 tko_rpc_utils.add_status_counts(group_dict, test_view.status) 125 group_dict['extra_info'].append(getattr(test_view, field)) 136 for test_view in query.values('job_tag').distinct(): 138 first_tag_component = test_view['job_tag'].split('-')[0] 184 tests_by_id = models.Test.objects.in_bulk([test_view['test_idx'] 185 for test_view in test_views]) 196 jobs_by_id = models.Job.objects.in_bulk([test_view['job_idx'] 197 for test_view in test_views]) 202 for test_view in test_views: [all …]
|
/external/autotest/cli/ |
D | query_results | 99 for test_view in test_views: 100 values = [str(test_view[column]) for column in columns]
|