Skip to content

Commit

Permalink
Ruby:Document and skip failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcotc committed Oct 23, 2024
1 parent 093c32a commit 126eba1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/parametric/test_crashtracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class Test_Crashtracking:
@missing_feature(context.library == "golang", reason="Not implemented")
@missing_feature(context.library == "nodejs", reason="Not implemented")
@missing_feature(context.library == "cpp", reason="Not implemented")
@missing_feature(context.library == "ruby", reason="Disabled due to instability of crash tracker APMLP-273")
def test_report_crash(self, test_agent, test_library):
test_library.crash()

Expand Down
3 changes: 3 additions & 0 deletions tests/parametric/test_headers_tracestate_dd.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,9 @@ def test_headers_tracestate_dd_propagate_origin(self, test_agent, test_library):
reason="False Bug: header[3,6]: can't guarantee the order of strings in the tracestate since they came from the map. BUG: header[4,5]: w3cTraceID shouldn't be present",
)
@bug(context.library in ["[email protected]", "[email protected]"], reason="AIT-9945")
@missing_feature(
context.library == "ruby", reason="_dd.p.dm is reset to DEFAULT because we made the sampling decision APMAPI-812"
)
def test_headers_tracestate_dd_propagate_propagatedtags(self, test_agent, test_library):
"""
harness sends a request with both tracestate and traceparent
Expand Down

0 comments on commit 126eba1

Please sign in to comment.