How to use set_autotest_install_dir method in autotest

Best Python code snippet using autotest_python

drones.py

Source:drones.py Github

copy

Full Screen

...65 if not self._calls:66 return67 self._execute_calls(self._calls)68 self.clear_call_queue()69 def set_autotest_install_dir(self, path):70 pass71class _LocalDrone(_AbstractDrone):72 def __init__(self):73 super(_LocalDrone, self).__init__()74 self.hostname = 'localhost'75 self._drone_utility = drone_utility.DroneUtility()76 def _execute_calls_impl(self, calls):77 return self._drone_utility.execute_calls(calls)78 def send_file_to(self, drone, source_path, destination_path,79 can_fail=False):80 if drone.hostname == self.hostname:81 self.queue_call('copy_file_or_directory', source_path,82 destination_path)83 else:84 self.queue_call('send_file_to', drone.hostname, source_path,85 destination_path, can_fail)86class _RemoteDrone(_AbstractDrone):87 def __init__(self, hostname):88 super(_RemoteDrone, self).__init__()89 self.hostname = hostname90 self._host = drone_utility.create_host(hostname)91 if not self._host.is_up():92 logging.error('Drone %s is unpingable, kicking out', hostname)93 raise DroneUnreachable94 self._autotest_install_dir = AUTOTEST_INSTALL_DIR95 @property96 def _drone_utility_path(self):97 return os.path.join(self._autotest_install_dir,98 'scheduler', 'drone_utility.py')99 def set_autotest_install_dir(self, path):100 self._autotest_install_dir = path101 def shutdown(self):102 super(_RemoteDrone, self).shutdown()103 self._host.close()104 def _execute_calls_impl(self, calls):105 logging.info("Running drone_utility on %s", self.hostname)106 result = self._host.run('python %s' % self._drone_utility_path,107 stdin=cPickle.dumps(calls), stdout_tee=None,108 connect_timeout=300)109 try:110 return cPickle.loads(result.stdout)111 except Exception: # cPickle.loads can throw all kinds of exceptions112 logging.critical('Invalid response:\n---\n%s\n---', result.stdout)113 raise...

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