Cycles: Disable fluid motion blur regression test

There are deeper issues than just updating the regression test .blend file
and the solution is dragging for far too long.

Considering this a known broken feature, which will either be fixed next week
or completely removed from the interface for the coming release.
This commit is contained in:
Sergey Sharybin 2020-01-09 11:40:10 +01:00
parent f681e9ea49
commit 002f5b826c
1 changed files with 9 additions and 1 deletions

View File

@ -29,6 +29,11 @@ class COLORS_DUMMY:
COLORS = COLORS_DUMMY
# NOTE: Keep everything lowercase.
BLACKLIST = (
'fluid_motion_blur.blend',
)
def print_message(message, type=None, status=''):
if type == 'SUCCESS':
print(COLORS.GREEN, end="")
@ -55,7 +60,10 @@ def print_message(message, type=None, status=''):
def blend_list(dirpath):
for root, dirs, files in os.walk(dirpath):
for filename in files:
if filename.lower().endswith(".blend"):
filename_lower = filename.lower()
if filename_lower in BLACKLIST:
continue
if filename_lower.endswith(".blend"):
filepath = os.path.join(root, filename)
yield filepath