Skip to content

Commit

Permalink
increase Lambda function timeout to address flaky unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller committed Jan 18, 2025
1 parent b9a7111 commit 60b4e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async def test_run_lambda(iam_client, lambda_client, aws_lambda_zip):
Runtime='python3.8',
Role=role_arn,
Handler='lambda_function.lambda_handler',
Timeout=10,
Timeout=20,
MemorySize=128,
Publish=True,
Code={'ZipFile': aws_lambda_zip},
Expand Down

0 comments on commit 60b4e40

Please sign in to comment.