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:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-01-09 13:40:10 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-01-09 13:40:10 +0300
commit002f5b826c7c0b11a4f94de6ce6a88cf849c05c5 (patch)
tree18ca0031b8dff940b51427db60b10f86799bf087 /tests/python/modules/render_report.py
parentf681e9ea4988940e0d23ec818f21f3af5e9a7222 (diff)
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.
Diffstat (limited to 'tests/python/modules/render_report.py')
-rwxr-xr-xtests/python/modules/render_report.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/python/modules/render_report.py b/tests/python/modules/render_report.py
index 58eae834879..ea72afa7fdc 100755
--- a/tests/python/modules/render_report.py
+++ b/tests/python/modules/render_report.py
@@ -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