From 64bd2091cfa47519d0d50f5880bef4a975593b06 Mon Sep 17 00:00:00 2001 From: Habib Gahbiche Date: Thu, 14 Sep 2023 20:27:31 +0200 Subject: [PATCH] Realtime Compositor tests: enable keying tests. Tests are not crashing anymore, so no reason to skip them. Blend files are already available in svn. Reference images have been updated in svn revision `r63481` Pull Request: https://projects.blender.org/blender/blender/pulls/112198 --- tests/python/compositor_realtime_render_tests.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/python/compositor_realtime_render_tests.py b/tests/python/compositor_realtime_render_tests.py index 942e5626da6..946cac753ac 100644 --- a/tests/python/compositor_realtime_render_tests.py +++ b/tests/python/compositor_realtime_render_tests.py @@ -21,12 +21,6 @@ BLACKLIST_UNSUPPORTED_RENDER_TESTS = [ 'node_keying_screen.blend' ] -BLACKLIST_CRASHING_TESTS = [ - 'node_keying.blend', - 'node_keying_edge.blend', - 'node_keying_matte.blend' -] - ENABLE_REALTIME_COMPOSITOR_SCRIPT = "import bpy; " \ "bpy.context.preferences.experimental.use_experimental_compositors = True; " \ "bpy.data.scenes[0].node_tree.execution_mode = 'REALTIME'" @@ -67,7 +61,7 @@ def main(): idiff = args.idiff[0] output_dir = args.outdir[0] - blacklist_all = BLACKLIST_CRASHING_TESTS + BLACKLIST_UNSUPPORTED_RENDER_TESTS + blacklist_all = BLACKLIST_UNSUPPORTED_RENDER_TESTS from modules import render_report report = render_report.Report("Compositor Realtime", output_dir, idiff, blacklist=blacklist_all) report.set_reference_dir("compositor_realtime_renders")