Tests: Enable blacklisted GPU compositor tests

Those tests are now expected to work.
This commit is contained in:
Omar Emara
2024-01-19 16:36:31 +02:00
parent e0202a6e42
commit 2bff75c303

View File

@@ -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)