From 2bff75c303fcf0f2e70b082ce9bfa7a45c1fb29f Mon Sep 17 00:00:00 2001 From: Omar Emara Date: Fri, 19 Jan 2024 16:36:31 +0200 Subject: [PATCH] Tests: Enable blacklisted GPU compositor tests Those tests are now expected to work. --- tests/python/compositor_realtime_render_tests.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/python/compositor_realtime_render_tests.py b/tests/python/compositor_realtime_render_tests.py index 0bd712f605e..2bb85144a22 100644 --- a/tests/python/compositor_realtime_render_tests.py +++ b/tests/python/compositor_realtime_render_tests.py @@ -15,12 +15,6 @@ try: except ImportError: inside_blender = False -BLACKLIST_UNSUPPORTED_RENDER_TESTS = [ - 'node_cryptomatte.blend', - 'node_cryptomatte_legacy.blend', - 'node_keying_screen.blend' -] - ENABLE_REALTIME_COMPOSITOR_SCRIPT = "import bpy; " \ "bpy.context.preferences.experimental.use_experimental_compositors = True; " \ "bpy.data.scenes[0].node_tree.execution_mode = 'REALTIME'" @@ -62,9 +56,8 @@ def main(): idiff = args.idiff[0] output_dir = args.outdir[0] - blacklist_all = BLACKLIST_UNSUPPORTED_RENDER_TESTS from modules import render_report - report = render_report.Report("Compositor Realtime", output_dir, idiff, blacklist=blacklist_all) + report = render_report.Report("Compositor Realtime", output_dir, idiff) report.set_reference_dir("compositor_realtime_renders") ok = report.run(test_dir, blender, get_arguments, batch=args.batch)