/external/autotest/frontend/afe/ |
direct_afe_unittest.py | 14 jobs = afe.get_jobs() 25 jobs = afe.get_jobs()
|
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...] |
rpc_interface.py | 27 get_jobs(owner='showard', status='Queued') 1122 def get_jobs(not_yet_run=False, running=False, finished=False, function [all...] |
/external/autotest/server/cros/dynamic_suite/ |
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...] |
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/suite_scheduler/ |
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,
|
deduping_scheduler.py | 78 return not self._afe.get_jobs(
|
/external/autotest/site_utils/ |
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
|
run_suite_unittest.py | 91 """Mock afe get_jobs call. 116 self.afe.get_jobs = mock.MagicMock(side_effect=side_effect) 193 self.afe.get_jobs.assert_called_once_with(
|
run_suite.py | [all...] |
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(): [all...] |
diagnosis_utils.py | 249 incomplete_jobs = self.rpc_interface.get_jobs(
|
gs_offloader_unittest.py | 444 """Class to mock the return value of `AFE.get_jobs()`.""" 471 self.mox.StubOutWithMock(job_directories._AFE, 'get_jobs') 521 job_directories._AFE.get_jobs( 597 job_directories._AFE.get_jobs( [all...] |
job_directories.py | 223 entry = _AFE.get_jobs(id=self._id, finished=True)
|
test_push.py | 283 while not AFE.get_jobs(id=suite_job_id, finished=True):
|
/external/autotest/utils/ |
tko_publish.py | 65 finished_jobs = afe.get_jobs(finished=True)
|
/external/autotest/contrib/ |
log_distiller.py | 360 suite_jobs = rpc.run('get_jobs', id=job_id) 362 suite_jobs = rpc.run('get_jobs', parent_job=job_id)
|
/external/autotest/server/ |
frontend.py | 289 def get_jobs(self, summary=False, **dargs): member in class:AFE 293 jobs_data = self.run('get_jobs', **dargs) 392 return self.get_jobs(id=id)[0] [all...] |
/external/autotest/frontend/afe/doctests/ |
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) [all...] |
/external/autotest/cli/contrib/ |
why_isnt_my_job_running.py | 25 jobs = proxy.run('get_jobs', id=job_id)
|