diff --git a/tests/python/modules/render_report.py b/tests/python/modules/render_report.py index 227556af40a..ecf5b9adf36 100755 --- a/tests/python/modules/render_report.py +++ b/tests/python/modules/render_report.py @@ -550,6 +550,10 @@ class Report: silently_failed_tests = [] all_files = list(blend_list(dirpath, self.device, self.blocklist)) all_files.sort() + if not list(blend_list(dirpath, self.device, [])): + print_message("No .blend files found in '{}'!".format(dirpath), 'FAILURE', 'FAILED') + return False + print_message("Running {} tests from 1 test case." . format(len(all_files)), 'SUCCESS', "==========")