Skip to content
Merged
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion tests/model_registry/model_catalog/search/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,8 @@ def validate_performance_data_files_on_pod(model_catalog_pod: Pod) -> dict[str,

for provider in providers.splitlines():
required_files = ["metadata.json", "performance.ndjson", "evaluations.ndjson"]
if provider == "manifest.json":
# skip the files manifest.json and variant-groups.ndjson
if provider in ["manifest.json", "variant-groups.ndjson"]:
Comment thread
dbasunag marked this conversation as resolved.
continue
LOGGER.info(f"Checking provider: {provider}")
# Only for RedHatAI model we expect performance.ndjson file, based on edge case definition
Expand Down