Best Python code snippet using Contexts
__init__.py
Source:__init__.py
...5 def initialise(self, args, env):6 return True7 def import_module(self, dir_path, module_name):8 filename = resolve_filename(dir_path, module_name)9 prune_sys_dot_modules(module_name, filename)10 if module_name in sys.modules:11 return12 loader = self.get_loader(module_name, filename)13 return loader.load_module(module_name)14 def get_loader(self, module_name, filename):15 return importlib.machinery.SourceFileLoader(module_name, filename)16 def __eq__(self, other):17 return type(self) == type(other)18def resolve_filename(dir_path, module_name):19 filename = os.path.join(dir_path, *module_name.split('.'))20 if os.path.isdir(filename): # it's a package21 filename = os.path.join(filename, '__init__.py')22 else:23 filename += '.py'24 return filename25def prune_sys_dot_modules(module_name, module_location):26 if module_name in sys.modules:27 existing_module = sys.modules[module_name]28 if not same_file(existing_module.__file__, module_location):29 del sys.modules[module_name]30def same_file(path1, path2):...
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!