Skip to content

Commit

Permalink
fix skips
Browse files Browse the repository at this point in the history
  • Loading branch information
mabdinur authored Oct 10, 2024
1 parent 43916c0 commit ea0fc43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/parametric/test_telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ def get_dd_appsec_sca_enabled_str(library):
)
@missing_feature(
context.library <= "python@2.16.0",
reason="Older versions of the Python tracer convert boolean values to strings",
reason="Converts boolean values to strings",
)
def test_telemetry_sca_enabled_propagated(
self, library_env, specific_libraries_support, outcome_value, test_agent, test_library
Expand All @@ -560,6 +560,7 @@ def test_telemetry_sca_enabled_propagated(
assert cfg_appsec_enabled.get("value") == outcome_value

@pytest.mark.parametrize("library_env", [{**DEFAULT_ENVVARS}])
@missing_feature(context.library <= "python@2.16.0", reason="Does not report DD_APPSEC_SCA_ENABLED configuration if the default value is used")
def test_telemetry_sca_enabled_not_propagated(self, library_env, test_agent, test_library):
configuration_by_name = self.get_app_started_configuration_by_name(test_agent, test_library)

Expand Down

0 comments on commit ea0fc43

Please sign in to comment.