diff --git a/tests/integration/local/start_api/lambda_authorizers/test_cfn_authorizer_definitions.py b/tests/integration/local/start_api/lambda_authorizers/test_cfn_authorizer_definitions.py index e97e27ef1b..1e9eccca04 100644 --- a/tests/integration/local/start_api/lambda_authorizers/test_cfn_authorizer_definitions.py +++ b/tests/integration/local/start_api/lambda_authorizers/test_cfn_authorizer_definitions.py @@ -184,7 +184,7 @@ class TestInvalidApiTemplateUsingUnsupportedType(WritableStartApiIntegBaseClass) """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Authorizer 'RequestAuthorizer' with type 'notvalid' is currently not supported. " @@ -219,7 +219,7 @@ class TestInvalidHttpTemplateUsingIncorrectPayloadVersion(WritableStartApiIntegB """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Error: Lambda Authorizer 'RequestAuthorizerV2Simple' contains an " @@ -254,7 +254,7 @@ class TestInvalidHttpTemplateSimpleResponseWithV1(WritableStartApiIntegBaseClass """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Error: 'EnableSimpleResponses' is only supported for '2.0' " @@ -289,7 +289,7 @@ class TestInvalidHttpTemplateUnsupportedType(WritableStartApiIntegBaseClass): """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Authorizer 'RequestAuthorizerV2Simple' with type 'unsupportedtype' is currently " @@ -323,7 +323,7 @@ class TestInvalidHttpTemplateInvalidIdentitySources(WritableStartApiIntegBaseCla """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Error: Lambda Authorizer RequestAuthorizerV2Simple does not contain valid identity sources.", diff --git a/tests/integration/local/start_api/lambda_authorizers/test_sfn_props_lambda_authorizers.py b/tests/integration/local/start_api/lambda_authorizers/test_sfn_props_lambda_authorizers.py index 7e5c10f3e4..fe7610ba80 100644 --- a/tests/integration/local/start_api/lambda_authorizers/test_sfn_props_lambda_authorizers.py +++ b/tests/integration/local/start_api/lambda_authorizers/test_sfn_props_lambda_authorizers.py @@ -159,7 +159,7 @@ class TestUsingSimpleResponseWithV1HttpApi(WritableStartApiIntegBaseClass): """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "EnableSimpleResponses must be used with the 2.0 payload " @@ -210,7 +210,7 @@ class TestInvalidInvalidVersionHttpApi(WritableStartApiIntegBaseClass): """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Error: Lambda Authorizer 'RequestAuthorizerV2' must contain " @@ -261,7 +261,7 @@ class TestUsingInvalidFunctionArnHttpApi(WritableStartApiIntegBaseClass): """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Unable to parse the Lambda ARN for Authorizer 'RequestAuthorizerV2', skipping", diff --git a/tests/integration/local/start_api/lambda_authorizers/test_swagger_authorizer_definitions.py b/tests/integration/local/start_api/lambda_authorizers/test_swagger_authorizer_definitions.py index 0495afee28..e961b8d349 100644 --- a/tests/integration/local/start_api/lambda_authorizers/test_swagger_authorizer_definitions.py +++ b/tests/integration/local/start_api/lambda_authorizers/test_swagger_authorizer_definitions.py @@ -182,7 +182,7 @@ class TestInvalidSwaggerTemplateUsingUnsupportedType(WritableStartApiIntegBaseCl """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Lambda authorizer 'Authorizer' type 'bad type' is unsupported, skipping", @@ -223,7 +223,7 @@ class TestInvalidSwaggerTemplateUsingSimpleResponseWithPayloadV1(WritableStartAp """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Simple responses are only available on HTTP APIs with " @@ -264,7 +264,7 @@ class TestInvalidSwaggerTemplateUsingUnsupportedPayloadVersion(WritableStartApiI """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Error: Authorizer 'Authorizer' contains an invalid payload version", @@ -304,7 +304,7 @@ class TestInvalidSwaggerTemplateUsingInvalidIdentitySources(WritableStartApiInte """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Error: Identity source 'a.b.c.d.e' for Lambda Authorizer " @@ -345,7 +345,7 @@ class TestInvalidSwaggerTemplateUsingTokenWithHttpApi(WritableStartApiIntegBaseC """ @pytest.mark.flaky(reruns=3) - @pytest.mark.timeout(timeout=10, method="thread") + @pytest.mark.timeout(timeout=100, method="thread") def test_invalid_template(self): self.assertIn( "Type 'token' for Lambda Authorizer 'Authorizer' is unsupported",