diff --git a/tests/integrations/aws_lambda/test_aws.py b/tests/integrations/aws_lambda/test_aws.py index 6f51ad14da..bea87adce5 100644 --- a/tests/integrations/aws_lambda/test_aws.py +++ b/tests/integrations/aws_lambda/test_aws.py @@ -661,6 +661,9 @@ def test_handler(event, context): assert response["Payload"]["AssertionError raised"] is False +@pytest.mark.xfail( + reason="The limited log output we depend on is being clogged by a new warning" +) def test_serverless_no_code_instrumentation(run_lambda_function): """ Test that ensures that just by adding a lambda layer containing the @@ -705,6 +708,9 @@ def test_handler(event, context): assert "sentry_handler" in response["LogResult"][3].decode("utf-8") +@pytest.mark.xfail( + reason="The limited log output we depend on is being clogged by a new warning" +) def test_error_has_new_trace_context_performance_enabled(run_lambda_function): envelopes, _, _ = run_lambda_function( LAMBDA_PRELUDE @@ -767,6 +773,9 @@ def test_handler(event, context): ) +@pytest.mark.xfail( + reason="The limited log output we depend on is being clogged by a new warning" +) def test_error_has_existing_trace_context_performance_enabled(run_lambda_function): trace_id = "471a43a4192642f0b136d5159a501701" parent_span_id = "6e8f22c393e68f19"