Home
last modified time | relevance | path

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

/external/autotest/frontend/afe/
Ddirect_afe_unittest.py14 jobs = afe.get_jobs()
25 jobs = afe.get_jobs()
Drpc_interface_unittest.py115 jobs = rpc_interface.get_jobs(id=job_id)
127 jobs = rpc_interface.get_jobs(id=job_id)
188 self._check_job_ids(rpc_interface.get_jobs(not_yet_run=True), [queued])
189 self._check_job_ids(rpc_interface.get_jobs(running=True),
192 self._check_job_ids(rpc_interface.get_jobs(finished=True), [complete])
196 self.assertRaises(AssertionError, rpc_interface.get_jobs,
198 self.assertRaises(AssertionError, rpc_interface.get_jobs,
200 self.assertRaises(AssertionError, rpc_interface.get_jobs,
208 self._check_job_ids(rpc_interface.get_jobs(suite=True), [parent_job])
209 self._check_job_ids(rpc_interface.get_jobs(sub=True), [child_jobs])
[all …]
Drpc_interface.py1027 def get_jobs(not_yet_run=False, running=False, finished=False, function
1091 jobs = get_jobs(**filter_data)
/external/autotest/site_utils/suite_scheduler/
Ddeduping_scheduler_unittest.py72 self.afe.get_jobs(name__istartswith=self._BUILD,
110 self.afe.get_jobs(
176 self.afe.get_jobs(
198 self.afe.get_jobs(name__istartswith=self._BUILD,
236 self.afe.get_jobs(name__istartswith=self._BUILD,
286 self.afe.get_jobs(name__istartswith=self._BUILD,
Ddeduping_scheduler.py122 return not self._afe.get_jobs(
/external/autotest/server/cros/dynamic_suite/
Djob_status_unittest.py86 self.afe.get_jobs(id__in=list(job_id_set),
133 self.afe.get_jobs(parent_job_id=parent_job_id).AndReturn(jobs[:6])
143 self.afe.get_jobs(id__in=list(job_id_set),
Djob_status.py165 return self._afe.get_jobs(id__in=list(self._job_ids), finished=True)
242 waiter.add_jobs(afe.get_jobs(parent_job_id=parent_job_id))
/external/autotest/server/lib/
Dsuite_report.py174 suite_job = afe.get_jobs(id=suite_job_id)[0]
181 child_jobs = afe.get_jobs(parent_job_id=suite_job_id)
/external/autotest/site_utils/
Drun_suite.py1255 suite_job = self._afe.get_jobs(id=self._suite_job_id)[0]
1310 child_jobs = jobs or self._afe.get_jobs(parent_job_id=self._suite_job_id)
1493 jobs=self._afe.get_jobs(id=self._suite_job_id)))
1624 existing_job = afe.get_jobs(id=job_id, finished=True)
1628 existing_job = afe.get_jobs(id=job_id)
1731 while not afe.get_jobs(id=job_id, finished=True):
1873 return not afe.get_jobs(
Dtest_runner_utils.py528 if not afe.get_jobs():
532 last_job_id = afe.get_jobs()[-1].id
535 for job in afe.get_jobs():
Djob_directories.py193 entry = _AFE.get_jobs(id=self._id, finished=True)
Dtest_push.py355 while not AFE.get_jobs(id=suite_job_id, finished=True):
640 if AFE.get_jobs(id=suite_id, finished=False):
Drun_suite_unittest.py121 self.afe.get_jobs = mock.MagicMock(side_effect=side_effect)
216 self.afe.get_jobs.assert_called_once_with(
Ddiagnosis_utils.py349 incomplete_jobs = self.rpc_interface.get_jobs(
Dgs_offloader_unittest.py530 job_directories._AFE.get_jobs(
606 job_directories._AFE.get_jobs(
/external/autotest/utils/
Dtko_publish.py65 finished_jobs = afe.get_jobs(finished=True)
/external/autotest/contrib/
Dfind_suite_tasks.py79 child_jobs = afe.get_jobs(parent_job_id=suite_job_id)
/external/autotest/frontend/afe/doctests/
D001_rpc_test.txt409 >>> data = rpc_interface.get_jobs()
513 # get_jobs_summary adds status counts to the rest of the get_jobs info
577 >>> data = rpc_interface.get_jobs(id=job_id)
/external/autotest/server/
Dfrontend.py592 def get_jobs(self, summary=False, **dargs): member in AFE
678 return self.get_jobs(id=id)[0]
/external/autotest/server/hosts/
Dservo_host.py391 job = afe.get_jobs(id=hqe.job.id)