How to use _wait_and_assume_role method in localstack

Best Python code snippet using localstack_python

fixtures.py

Source:fixtures.py Github

copy

Full Screen

...939 except Exception:940 LOG.debug("Error deleting user '%s' during test cleanup", username)941@pytest.fixture942def wait_and_assume_role(sts_client):943 def _wait_and_assume_role(role_arn: str, session_name: str = None):944 if not session_name:945 session_name = f"session-{short_uid()}"946 def assume_role():947 return sts_client.assume_role(RoleArn=role_arn, RoleSessionName=session_name)[948 "Credentials"949 ]950 # need to retry a couple of times before we are allowed to assume this role in AWS951 keys = retry(assume_role, sleep=5, retries=4)952 return keys953 return _wait_and_assume_role954@pytest.fixture955def create_role(iam_client):956 role_names = []957 def _create_role(**kwargs):...

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