Lines Matching refs:job_repo_url
15 def get_updater_from_repo_url(host, job_repo_url=None):
18 All server-side tests that run in the lab have an associated job_repo_url
29 @param job_repo_url: If set, the job_repo_url to use.
31 @raise error.TestError: If we fail to get a job_repo_url.
33 # Get the job_repo_url -- if not present, attempt to use the one
35 if not job_repo_url:
37 job_repo_url = host.lookup_job_repo_url()
39 logging.fatal('Could not lookup job_repo_url from afe.')
41 if not job_repo_url:
43 'Could not find a job_repo_url for the given host.')
47 ds_url, build = tools.get_devserver_build_from_package_url(job_repo_url)