Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions toolset/utils/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,18 @@ def parse_config(self, config, directory):
% config['framework'],
color=Fore.YELLOW)

# Check that each framework does not have more than the maximum number of tests
maximum_tests = 10
non_broken_tests_filter = lambda test: (not hasattr(test, "tags")) or ("broken" not in test.tags)
non_broken_tests_to_run = list(filter(non_broken_tests_filter, tests_to_run))
if len(non_broken_tests_to_run) > maximum_tests:
message = [
"Framework %s defines %s tests in benchmark_config.json (max is %s)."
% (config['framework'], len(non_broken_tests_to_run), maximum_tests),
"Contact maintainers and remove deprecated or discarded ones to make room."
]
log("\n".join(message), color=Fore.YELLOW)

# Check that each test configuration is acceptable
# Throw exceptions if a field is missing, or how to improve the field
for test_name, test_keys in test.items():
Expand Down
Loading