Best Python code snippet using autotest_python
base_job_unittest.py
Source:base_job_unittest.py
...183 def test_pop_restores_context(self):184 sub3 = os.path.join(self.resultdir, 'sub3')185 self.job.push_execution_context('sub3')186 self.assertEqual(self.job.resultdir, sub3)187 self.job.pop_execution_context()188 self.assertEqual(self.job.resultdir, self.resultdir)189 def test_push_and_pop_are_fifo(self):190 sub4 = os.path.join(self.resultdir, 'sub4')191 subsub = os.path.join(sub4, 'subsub')192 self.job.push_execution_context('sub4')193 self.assertEqual(self.job.resultdir, sub4)194 self.job.push_execution_context('subsub')195 self.assertEqual(self.job.resultdir, subsub)196 self.job.pop_execution_context()197 self.assertEqual(self.job.resultdir, sub4)198 self.job.pop_execution_context()199 self.assertEqual(self.job.resultdir, self.resultdir)200class test_job_directory(unittest.TestCase):201 def setUp(self):202 self.testdir = tempfile.mkdtemp(suffix='unittest')203 self.original_wd = os.getcwd()204 os.chdir(self.testdir)205 def tearDown(self):206 os.chdir(self.original_wd)207 shutil.rmtree(self.testdir, ignore_errors=True)208 def test_passes_if_dir_exists(self):209 os.mkdir('testing')210 self.assert_(os.path.isdir('testing'))211 jd = base_job.job_directory('testing')212 self.assert_(os.path.isdir('testing'))...
context.py
Source:context.py
...21 return self22 async def __aexit__(self, exc_type, exc_val, exc_tb):23 async with self.database._conn_lock:24 if self.connection is None:25 self.database.pop_execution_context()26 else:27 try:28 if self.with_transaction:29 if not exc_type:30 self.txn.commit(False)31 await self.txn.__aexit__(exc_type, exc_val, exc_tb)32 finally:33 self.database.pop_execution_context()34 await self.database._close(self.connection)35class AioUsing(AioExecutionContext, Using):36 async def __aenter__(self):37 self._orig = []38 for model in self.models:39 self._orig.append(model._meta.database)40 model._meta.database = self.database41 return await super(Using, self).__aenter__()42 async def __aexit__(self, exc_type, exc_val, exc_tb):43 await super(Using, self).__aexit__(exc_type, exc_val, exc_tb)44 for i, model in enumerate(self.models):45 model._meta.database = self._orig[i]46class _aio_atomic(_aio_callable_context_manager, _atomic):47 async def __aenter__(self):...
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!!