Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python/cycles_render_tests.py')
-rw-r--r--tests/python/cycles_render_tests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/python/cycles_render_tests.py b/tests/python/cycles_render_tests.py
index 598e4b6828c..10ba2ce552a 100644
--- a/tests/python/cycles_render_tests.py
+++ b/tests/python/cycles_render_tests.py
@@ -32,6 +32,11 @@ BLACKLIST_OPTIX = [
'T43865.blend',
]
+BLACKLIST_METAL = [
+ # No MNEE for Metal currently
+ "underwater_caustics.blend",
+]
+
BLACKLIST_GPU = [
# Uninvestigated differences with GPU.
'image_log.blend',
@@ -116,6 +121,8 @@ def main():
blacklist += BLACKLIST_OSL
if device == 'OPTIX':
blacklist += BLACKLIST_OPTIX
+ if device == 'METAL':
+ blacklist += BLACKLIST_METAL
from modules import render_report
report = render_report.Report('Cycles', output_dir, idiff, device, blacklist)