From 48b9b0732ea925244020b85ea7cfefdbe2ecbf70 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 23 Apr 2026 11:11:42 +0200 Subject: [PATCH] tests: Raise shutdown timeout in aws lambda tests --- tests/integrations/aws_lambda/test_aws_lambda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integrations/aws_lambda/test_aws_lambda.py b/tests/integrations/aws_lambda/test_aws_lambda.py index 664220464c..4b2f416c3a 100644 --- a/tests/integrations/aws_lambda/test_aws_lambda.py +++ b/tests/integrations/aws_lambda/test_aws_lambda.py @@ -82,7 +82,7 @@ def before_test(): print("[test_environment fixture] Tearing down AWS Lambda test infrastructure") process.terminate() - process.wait(timeout=5) # Give it time to shut down gracefully + process.wait(timeout=10) # Give it time to shut down gracefully # Force kill if still running if process.poll() is None: