diff --git a/tests/data b/tests/data index 181a40d6c97..8e23c612aa0 160000 --- a/tests/data +++ b/tests/data @@ -1 +1 @@ -Subproject commit 181a40d6c972c591996c49588d18d6154b9fbc6a +Subproject commit 8e23c612aa073d458569be57f393a861c7e32d1a diff --git a/tests/python/eevee_next_render_tests.py b/tests/python/eevee_next_render_tests.py index f6face48bad..cb711f2ec53 100644 --- a/tests/python/eevee_next_render_tests.py +++ b/tests/python/eevee_next_render_tests.py @@ -10,6 +10,12 @@ import subprocess import sys from pathlib import Path +# List of .blend files that are known to be failing and are not ready to be +# tested, or that only make sense on some devices. Accepts regular expressions. +BLACKLIST = [ + # Blacklisted due to point cloud volume differences between platforms (to be fixed). + "points_volume.blend", +] def setup(): import bpy @@ -176,7 +182,7 @@ def main(): reference_override_dir = "eevee_next_renders/amd" from modules import render_report - report = render_report.Report("Eevee Next", output_dir, oiiotool) + report = render_report.Report("Eevee Next", output_dir, oiiotool, blacklist=BLACKLIST) report.set_pixelated(True) report.set_engine_name('eevee_next') report.set_reference_dir("eevee_next_renders")