Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruby:Document and skip failing tests #3297

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
4 changes: 4 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,10 @@ 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