add exported extractor results

This commit is contained in:
Mike Fährmann
2023-09-10 14:45:01 +02:00
parent b611bf9629
commit a833c244c8
250 changed files with 18610 additions and 2 deletions

View File

@@ -250,7 +250,7 @@ def collect_tests(whitelist=None):
if whitelist and extr.category not in whitelist:
continue
test = build_test(extr, data)
tests[f"{extr.category}_{extr.subcategory}"].append(test)
tests[extr.category].append(test)
return tests