How to use get_fetch_location method in autotest

Best Python code snippet using autotest_python

site_autotest.py

Source:site_autotest.py Github

copy

Full Screen

...40 except (ImportError, urllib2.URLError):41 logging.warning('Not attempting to look for %s', JOB_REPO_URL)42 pass43 return None44 def get_fetch_location(self):45 """Generate list of locations where autotest can look for packages.46 Old n' busted: Autotest packages are always stored at a URL that can47 be derived from the one passed via the voodoo magic --image argument.48 New hotness: Hosts are tagged with an attribute containing the URL49 from which to source packages when running a test on that host.50 @returns the list of candidate locations to check for packages.51 """52 repos = super(SiteAutotest, self).get_fetch_location()53 if _PARSER.options.image:54 image_opt = _PARSER.options.image55 if image_opt.startswith('http://'):56 # A devserver HTTP url was specified, set that as the repo_url.57 repos.append(image_opt.replace(58 'update', 'static').rstrip('/') + '/autotest')59 else:60 # An image_name like stumpy-release/R27-3437.0.0 was specified,61 # set this as the repo_url for the host. If an AFE is not being62 # run, this will ensure that the installed build uses the63 # associated artifacts for the test specified when running64 # autoserv with --image. However, any subsequent tests run on65 # the host will no longer have the context of the image option66 # and will revert back to utilizing test code/artifacts that are...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run autotest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful