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/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