How to use select_request_microversion method in tempest

Best Python code snippet using tempest_python

base.py

Source:base.py Github

copy

Full Screen

...58 cfg_max_version)59 @classmethod60 def setup_credentials(cls):61 cls.request_microversion = (62 api_version_utils.select_request_microversion(63 cls.min_microversion,64 CONF.baremetal.min_microversion))65 cls.services_microversion = {66 CONF.baremetal.catalog_type: cls.request_microversion}67 super(BaseBaremetalTest, cls).setup_credentials()68 @classmethod69 def setup_clients(cls):70 super(BaseBaremetalTest, cls).setup_clients()71 cls.client = clients.Manager().baremetal_client72 @classmethod73 def resource_setup(cls):74 super(BaseBaremetalTest, cls).resource_setup()75 cls.request_microversion = (76 api_version_utils.select_request_microversion(77 cls.min_microversion,78 CONF.baremetal.min_microversion))79 cls.driver = CONF.baremetal.driver80 cls.power_timeout = CONF.baremetal.power_timeout81 cls.unprovision_timeout = CONF.baremetal.unprovision_timeout82 cls.created_objects = {}83 for resource in RESOURCE_TYPES:84 cls.created_objects[resource] = set()85 @classmethod86 def resource_cleanup(cls):87 """Ensure that all created objects get destroyed."""88 try:89 for resource in RESOURCE_TYPES:90 uuids = cls.created_objects[resource]...

Full Screen

Full Screen

microversion.py

Source:microversion.py Github

copy

Full Screen

...16 @classmethod17 def resource_setup(cls):18 super(BaseV2ComputeTest, cls).resource_setup()19 cls.request_microversion = (20 api_version_utils.select_request_microversion(21 cls.min_microversion,...

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 tempest 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