Skip to content

Commit

Permalink
run tests with v2.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mabdinur authored Oct 15, 2024
1 parent a83cce9 commit 528d071
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/parametric/test_telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Test_Defaults:
}
],
)
@missing_feature(context.library <= "python@2.16.0", reason="Reports configurations with unexpected names")
@missing_feature(context.library < "python@2.16.0", reason="Reports configurations with unexpected names")
def test_library_settings(self, library_env, test_agent, test_library):
with test_library.start_span("test"):
pass
Expand Down Expand Up @@ -140,7 +140,7 @@ class Test_Consistent_Configs:
}
],
)
@missing_feature(context.library <= "python@2.16.0", reason="Reports configurations with unexpected names")
@missing_feature(context.library < "python@2.16.0", reason="Reports configurations with unexpected names")
def test_library_settings(self, library_env, test_agent, test_library):
with test_library.start_span("test"):
pass
Expand Down Expand Up @@ -542,7 +542,7 @@ def get_dd_appsec_sca_enabled_str(library):
],
)
@missing_feature(
context.library <= "python@2.16.0", reason="Converts boolean values to strings",
context.library < "python@2.16.0", 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 @@ -561,7 +561,7 @@ def test_telemetry_sca_enabled_propagated(

@pytest.mark.parametrize("library_env", [{**DEFAULT_ENVVARS}])
@missing_feature(
context.library <= "python@2.16.0",
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):
Expand Down

0 comments on commit 528d071

Please sign in to comment.