From 03e92a9d28bbd8e9fb87a282dbe70c7448d135f2 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 2 Feb 2024 18:11:18 +0100 Subject: [PATCH] Tests: Temporarily increase OpenImageDenoise test threshold for upgrade So that both the current and upcoming version pass tests. To be lowered again when all platforms have upgraded. --- tests/python/cycles_render_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/python/cycles_render_tests.py b/tests/python/cycles_render_tests.py index 043c9494c21..96ad4ea05e1 100644 --- a/tests/python/cycles_render_tests.py +++ b/tests/python/cycles_render_tests.py @@ -147,6 +147,8 @@ def main(): test_dir_name = Path(test_dir).name if test_dir_name in ('motion_blur', 'integrator', ): report.set_fail_threshold(0.032) + if test_dir_name == "denoise": + report.set_fail_threshold(0.25) ok = report.run(test_dir, blender, get_arguments, batch=args.batch)