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
This commit is contained in:
Habib Gahbiche 2023-09-14 20:27:31 +02:00 committed by Habib Gahbiche
parent 4086ef986c
commit 64bd2091cf
1 changed files with 1 additions and 7 deletions

View File

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