Searched refs:get_jobs (Results 1 – 18 of 18) sorted by relevance
/external/autotest/server/cros/dynamic_suite/ |
D | job_status_unittest.py | 96 self.afe.get_jobs(id=job.id, not_yet_run=True).AndReturn([job]) 97 self.afe.get_jobs(id=job.id, not_yet_run=True).AndReturn([]) 110 self.afe.get_jobs(id=job0.id, not_yet_run=True).AndReturn([job0]) 111 self.afe.get_jobs(id=job1.id, not_yet_run=True).AndReturn([job1]) 112 self.afe.get_jobs(id=job0.id, not_yet_run=True).AndReturn([]) 113 self.afe.get_jobs(id=job1.id, not_yet_run=True).AndReturn([job1]) 114 self.afe.get_jobs(id=job1.id, not_yet_run=True).AndReturn([]) 124 self.afe.get_jobs(id=job.id, not_yet_run=True).AndReturn([]) 134 self.afe.get_jobs(id=job.id, finished=True).AndReturn([]) 135 self.afe.get_jobs(id=job.id, finished=True).AndReturn([job]) [all …]
|
D | job_status.py | 162 if len(afe.get_jobs(id=job_id, not_yet_run=True)) > 0: 196 if not afe.get_jobs(id=job_id, finished=True): 383 afe.get_jobs(parent_job_id=parent_job_id)) 386 afe.get_jobs(parent_job_id=parent_job_id, 427 if not afe.get_jobs(id=job.id, finished=True):
|
/external/autotest/site_utils/ |
D | brillo_test_launcher.py | 153 jobs_list = moblab.afe.get_jobs(id=parent_job.id) 154 jobs_list.extend(moblab.afe.get_jobs(parent_job=parent_job.id)) 169 while (moblab.afe.get_jobs(id=parent_job.id, not_yet_run=True, 171 or moblab.afe.get_jobs(parent_job=parent_job.id, not_yet_run=True, 208 solo_test_run = len(moblab.afe.get_jobs(parent_job=parent_job.id)) == 0
|
D | run_suite.py | 1073 suite_job = self._afe.get_jobs(id=self._suite_job_id)[0] 1115 child_jobs = jobs or self._afe.get_jobs(parent_job_id=self._suite_job_id) 1360 jobs=self._afe.get_jobs(id=self._suite_job_id))) 1489 existing_job = afe.get_jobs(id=job_id, finished=True) 1493 existing_job = afe.get_jobs(id=job_id) 1538 while not afe.get_jobs(id=job_id, finished=True):
|
D | test_runner_utils.py | 524 if not afe.get_jobs(): 528 last_job_id = afe.get_jobs()[-1].id 531 for job in afe.get_jobs():
|
D | job_directories.py | 223 entry = _AFE.get_jobs(id=self._id, finished=True)
|
D | diagnosis_utils.py | 249 incomplete_jobs = self.rpc_interface.get_jobs(
|
D | run_suite_unittest.py | 116 self.afe.get_jobs = mock.MagicMock(side_effect=side_effect) 193 self.afe.get_jobs.assert_called_once_with(
|
D | test_push.py | 283 while not AFE.get_jobs(id=suite_job_id, finished=True):
|
D | gs_offloader_unittest.py | 521 job_directories._AFE.get_jobs( 597 job_directories._AFE.get_jobs(
|
/external/autotest/site_utils/suite_scheduler/ |
D | deduping_scheduler_unittest.py | 71 self.afe.get_jobs(name__startswith=self._BUILD, 103 self.afe.get_jobs( 163 self.afe.get_jobs( 184 self.afe.get_jobs(name__startswith=self._BUILD, 217 self.afe.get_jobs(name__startswith=self._BUILD, 262 self.afe.get_jobs(name__startswith=self._BUILD,
|
D | deduping_scheduler.py | 78 return not self._afe.get_jobs(
|
/external/autotest/frontend/afe/ |
D | direct_afe_unittest.py | 14 jobs = afe.get_jobs() 25 jobs = afe.get_jobs()
|
D | rpc_interface_unittest.py | 125 jobs = rpc_interface.get_jobs(id=job_id) 136 jobs = rpc_interface.get_jobs(id=job_id) 197 self._check_job_ids(rpc_interface.get_jobs(not_yet_run=True), [queued]) 198 self._check_job_ids(rpc_interface.get_jobs(running=True), 201 self._check_job_ids(rpc_interface.get_jobs(finished=True), [complete]) 205 self.assertRaises(AssertionError, rpc_interface.get_jobs, 207 self.assertRaises(AssertionError, rpc_interface.get_jobs, 209 self.assertRaises(AssertionError, rpc_interface.get_jobs, 217 self._check_job_ids(rpc_interface.get_jobs(suite=True), [parent_job]) 218 self._check_job_ids(rpc_interface.get_jobs(sub=True), [child_jobs]) [all …]
|
D | rpc_interface.py | 1122 def get_jobs(not_yet_run=False, running=False, finished=False, function 1188 jobs = get_jobs(**filter_data)
|
/external/autotest/utils/ |
D | tko_publish.py | 65 finished_jobs = afe.get_jobs(finished=True)
|
/external/autotest/server/ |
D | frontend.py | 289 def get_jobs(self, summary=False, **dargs): member in AFE 392 return self.get_jobs(id=id)[0]
|
/external/autotest/frontend/afe/doctests/ |
D | 001_rpc_test.txt | 515 >>> data = rpc_interface.get_jobs() 619 # get_jobs_summary adds status counts to the rest of the get_jobs info 684 >>> data = rpc_interface.get_jobs(id=job_id)
|