-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import pytest | ||
|
||
from utils.parametric.spec.trace import find_first_span_in_trace_payload, find_trace, find_only_span | ||
from utils import missing_feature, context, scenarios, features | ||
from utils import missing_feature, irrelevant, context, scenarios, features | ||
|
||
parametrize = pytest.mark.parametrize | ||
POWER_2_64 = 18446744073709551616 | ||
|
@@ -213,6 +213,7 @@ def test_datadog_128_bit_generation_enabled_by_default(self, test_agent, test_li | |
|
||
@missing_feature(context.library == "cpp", reason="propagation style not supported") | ||
@missing_feature(context.library == "ruby", reason="not implemented") | ||
@irrelevant(context.library > "[email protected]", reason="3.x set `b3` instead of `B3 single header`") | ||
@pytest.mark.parametrize( | ||
"library_env", | ||
[{"DD_TRACE_PROPAGATION_STYLE": "B3 single header", "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": "false"}], | ||
|
@@ -236,6 +237,7 @@ def test_b3single_128_bit_propagation(self, test_agent, test_library): | |
|
||
@missing_feature(context.library == "cpp", reason="propagation style not supported") | ||
@missing_feature(context.library == "ruby", reason="not implemented") | ||
@irrelevant(context.library > "[email protected]", reason="3.x set `b3` instead of `B3 single header`") | ||
@pytest.mark.parametrize( | ||
"library_env", | ||
[{"DD_TRACE_PROPAGATION_STYLE": "B3 single header", "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": "true"}], | ||
|
@@ -257,6 +259,7 @@ def test_b3single_128_bit_propagation_and_generation(self, test_agent, test_libr | |
@missing_feature( | ||
context.library == "ruby", reason="Issue: Ruby doesn't support case-insensitive distributed headers" | ||
) | ||
@irrelevant(context.library > "[email protected]", reason="3.x set `b3` instead of `B3 single header`") | ||
@pytest.mark.parametrize( | ||
"library_env", | ||
[{"DD_TRACE_PROPAGATION_STYLE": "B3 single header", "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": "false"}], | ||
|
@@ -274,6 +277,7 @@ def test_b3single_128_bit_generation_disabled(self, test_agent, test_library): | |
|
||
@missing_feature(context.library == "cpp", reason="propagation style not supported") | ||
@missing_feature(context.library == "ruby", reason="not implemented") | ||
@irrelevant(context.library > "[email protected]", reason="3.x set `b3` instead of `B3 single header`") | ||
@pytest.mark.parametrize( | ||
"library_env", | ||
[{"DD_TRACE_PROPAGATION_STYLE": "B3 single header", "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": "true"}], | ||
|