Skip to content

Commit

Permalink
ref(awslambda): xfail broken tests for now (#2794)
Browse files Browse the repository at this point in the history
  • Loading branch information
sentrivana authored Mar 7, 2024
1 parent d62dc90 commit 8f1a125
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/integrations/aws_lambda/test_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 8f1a125

Please sign in to comment.