diff --git a/manifests/python.yml b/manifests/python.yml index 349ac2565ab..c7553548206 100644 --- a/manifests/python.yml +++ b/manifests/python.yml @@ -209,6 +209,7 @@ tests/: TestParameterName: "*": v2.20.0 fastapi: v2.20.1 + python3.12: bug (APPSEC-56375) test_parameter_value.py: TestParameterValue: '*': v2.9.0 diff --git a/tests/appsec/iast/source/test_parameter_name.py b/tests/appsec/iast/source/test_parameter_name.py index a7957f5fcfa..b0099b9a7e9 100644 --- a/tests/appsec/iast/source/test_parameter_name.py +++ b/tests/appsec/iast/source/test_parameter_name.py @@ -2,7 +2,7 @@ # This product includes software developed at Datadog (https://www.datadoghq.com/). # Copyright 2021 Datadog, Inc. -from utils import context, missing_feature, bug, features, flaky +from utils import context, missing_feature, bug, features from ..utils import BaseSourceTest @@ -27,7 +27,6 @@ class TestParameterName(BaseSourceTest): ) @bug(weblog_variant="resteasy-netty3", reason="APPSEC-55687") @missing_feature(library="dotnet", reason="Tainted as request body") - @flaky(context.weblog_variant == "python3.12", reason="APPSEC-56375") def test_source_post_reported(self): """For use case where only one is reported, we want to keep a test on the one reported""" self.validate_request_reported(self.requests["POST"]) @@ -53,7 +52,6 @@ def test_source_get_reported(self): ) @bug(weblog_variant="resteasy-netty3", reason="APPSEC-55687") @missing_feature(library="dotnet", reason="Tainted as request body") - @flaky(context.weblog_variant == "python3.12", reason="APPSEC-56375") def test_source_reported(self): super().test_source_reported()