File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
tests/integrations/aws_lambda Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -661,6 +661,9 @@ def test_handler(event, context):
661
661
assert response ["Payload" ]["AssertionError raised" ] is False
662
662
663
663
664
+ @pytest .mark .xfail (
665
+ reason = "The limited log output we depend on is being clogged by a new warning"
666
+ )
664
667
def test_serverless_no_code_instrumentation (run_lambda_function ):
665
668
"""
666
669
Test that ensures that just by adding a lambda layer containing the
@@ -705,6 +708,9 @@ def test_handler(event, context):
705
708
assert "sentry_handler" in response ["LogResult" ][3 ].decode ("utf-8" )
706
709
707
710
711
+ @pytest .mark .xfail (
712
+ reason = "The limited log output we depend on is being clogged by a new warning"
713
+ )
708
714
def test_error_has_new_trace_context_performance_enabled (run_lambda_function ):
709
715
envelopes , _ , _ = run_lambda_function (
710
716
LAMBDA_PRELUDE
@@ -767,6 +773,9 @@ def test_handler(event, context):
767
773
)
768
774
769
775
776
+ @pytest .mark .xfail (
777
+ reason = "The limited log output we depend on is being clogged by a new warning"
778
+ )
770
779
def test_error_has_existing_trace_context_performance_enabled (run_lambda_function ):
771
780
trace_id = "471a43a4192642f0b136d5159a501701"
772
781
parent_span_id = "6e8f22c393e68f19"
You can’t perform that action at this time.
0 commit comments