• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1from autotest_lib.server import utils
2
3
4def install(machine):
5    logging.info('Verifying job repo url for machine %s', machine)
6    host = hosts.create_host(machine)
7    host.verify_job_repo_url(job.tag)
8
9
10job.parallel_simple(install, machines, log=False)
11