We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4592fa9 commit 9da55c3Copy full SHA for 9da55c3
tests/model_registry/model_catalog/catalog_config/test_model_catalog_negative.py
@@ -156,6 +156,21 @@ def test_modify_default_catalog_configmap_reconciles(
156
"Hugging Face requires a specific organization",
157
id="test_hf_source_multiple_wildcards",
158
),
159
+ pytest.param(
160
+ """
161
+catalogs:
162
+ - name: HuggingFace Hub
163
+ id: error_catalog
164
+ type: hf
165
+ enabled: true
166
+ properties:
167
+ allowedOrganization: "abc-random"
168
+ includedModels:
169
+ - '*'
170
+""",
171
+ "failed to expand model patterns: no models found",
172
+ id="test_hf_source_invalid_organization",
173
+ ),
174
],
175
indirect=["updated_catalog_config_map_scope_function"],
176
)
0 commit comments