Skip to content

Commit bfad94d

Browse files
authored
fix: add variant-groups.ndjson to skip check for models (#1191)
1 parent 37679e2 commit bfad94d

File tree

1 file changed

+2
-1
lines changed
  • tests/model_registry/model_catalog/search

1 file changed

+2
-1
lines changed

tests/model_registry/model_catalog/search/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ def validate_performance_data_files_on_pod(model_catalog_pod: Pod) -> dict[str,
330330

331331
for provider in providers.splitlines():
332332
required_files = ["metadata.json", "performance.ndjson", "evaluations.ndjson"]
333-
if provider == "manifest.json":
333+
# skip the files manifest.json and variant-groups.ndjson
334+
if provider in ["manifest.json", "variant-groups.ndjson"]:
334335
continue
335336
LOGGER.info(f"Checking provider: {provider}")
336337
# Only for RedHatAI model we expect performance.ndjson file, based on edge case definition

0 commit comments

Comments
 (0)