Best Python code snippet using hypothesis
test_plugins.py
Source:test_plugins.py
...4from custodia.client import CustodiaHTTPClient5from custodia.plugin import CSStore, HTTPAuthenticator, HTTPAuthorizer6class TestCustodiaPlugins(unittest.TestCase):7 project_name = 'custodia'8 def get_entry_points(self, group):9 eps = []10 for e in pkg_resources.iter_entry_points(group):11 if e.dist.project_name != self.project_name:12 # only interested in our own entry points13 continue14 eps.append(e)15 return eps16 def assert_ep(self, ep, basecls):17 try:18 cls = ep.resolve()19 except Exception as e: # pylint: disable=broad-except20 self.fail("Failed to load %r: %r" % (ep, e))21 if not issubclass(cls, basecls):22 self.fail("%r is not a subclass of %r" % (cls, basecls))23 def test_authenticators(self):24 for ep in self.get_entry_points('custodia.authenticators'):25 self.assert_ep(ep, HTTPAuthenticator)26 def test_authorizers(self):27 for ep in self.get_entry_points('custodia.authorizers'):28 self.assert_ep(ep, HTTPAuthorizer)29 def test_clients(self):30 for ep in self.get_entry_points('custodia.clients'):31 self.assert_ep(ep, CustodiaHTTPClient)32 def test_stores(self):33 for ep in self.get_entry_points('custodia.stores'):...
setup.py
Source:setup.py
...8 import model_metadata9except ImportError:10 def get_cmdclass(*args, **kwds):11 return kwds.get("cmdclass", None)12 def get_entry_points(*args):13 return None14else:15 from model_metadata.utils import get_cmdclass, get_entry_points16packages = find_packages(include=["pymt_overland_flow"])17pymt_components = [("OverlandFlow=landlab.bmi.components:OverlandFlow", "meta")]18setup(19 name="pymt_overland_flow",20 author="Eric Hutton",21 description="PyMT plugin overland_flow",22 version=versioneer.get_version(),23 packages=packages,24 cmdclass=get_cmdclass(pymt_components, cmdclass=versioneer.get_cmdclass()),25 entry_points=get_entry_points(pymt_components),...
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!!