Skip to content

Commit 8f1a125

Browse files
authored
ref(awslambda): xfail broken tests for now (#2794)
1 parent d62dc90 commit 8f1a125

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/integrations/aws_lambda/test_aws.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,9 @@ def test_handler(event, context):
661661
assert response["Payload"]["AssertionError raised"] is False
662662

663663

664+
@pytest.mark.xfail(
665+
reason="The limited log output we depend on is being clogged by a new warning"
666+
)
664667
def test_serverless_no_code_instrumentation(run_lambda_function):
665668
"""
666669
Test that ensures that just by adding a lambda layer containing the
@@ -705,6 +708,9 @@ def test_handler(event, context):
705708
assert "sentry_handler" in response["LogResult"][3].decode("utf-8")
706709

707710

711+
@pytest.mark.xfail(
712+
reason="The limited log output we depend on is being clogged by a new warning"
713+
)
708714
def test_error_has_new_trace_context_performance_enabled(run_lambda_function):
709715
envelopes, _, _ = run_lambda_function(
710716
LAMBDA_PRELUDE
@@ -767,6 +773,9 @@ def test_handler(event, context):
767773
)
768774

769775

776+
@pytest.mark.xfail(
777+
reason="The limited log output we depend on is being clogged by a new warning"
778+
)
770779
def test_error_has_existing_trace_context_performance_enabled(run_lambda_function):
771780
trace_id = "471a43a4192642f0b136d5159a501701"
772781
parent_span_id = "6e8f22c393e68f19"

0 commit comments

Comments
 (0)