Home
last modified time | relevance | path

Searched refs:get_jobs (Results 1 – 18 of 18) sorted by relevance

/external/autotest/server/cros/dynamic_suite/
Djob_status_unittest.py96 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 …]
Djob_status.py162 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/
Dbrillo_test_launcher.py153 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
Drun_suite.py1073 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):
Dtest_runner_utils.py524 if not afe.get_jobs():
528 last_job_id = afe.get_jobs()[-1].id
531 for job in afe.get_jobs():
Djob_directories.py223 entry = _AFE.get_jobs(id=self._id, finished=True)
Ddiagnosis_utils.py249 incomplete_jobs = self.rpc_interface.get_jobs(
Drun_suite_unittest.py116 self.afe.get_jobs = mock.MagicMock(side_effect=side_effect)
193 self.afe.get_jobs.assert_called_once_with(
Dtest_push.py283 while not AFE.get_jobs(id=suite_job_id, finished=True):
Dgs_offloader_unittest.py521 job_directories._AFE.get_jobs(
597 job_directories._AFE.get_jobs(
/external/autotest/site_utils/suite_scheduler/
Ddeduping_scheduler_unittest.py71 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,
Ddeduping_scheduler.py78 return not self._afe.get_jobs(
/external/autotest/frontend/afe/
Ddirect_afe_unittest.py14 jobs = afe.get_jobs()
25 jobs = afe.get_jobs()
Drpc_interface_unittest.py125 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 …]
Drpc_interface.py1122 def get_jobs(not_yet_run=False, running=False, finished=False, function
1188 jobs = get_jobs(**filter_data)
/external/autotest/utils/
Dtko_publish.py65 finished_jobs = afe.get_jobs(finished=True)
/external/autotest/server/
Dfrontend.py289 def get_jobs(self, summary=False, **dargs): member in AFE
392 return self.get_jobs(id=id)[0]
/external/autotest/frontend/afe/doctests/
D001_rpc_test.txt515 >>> 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)