Skip to content

Commit c2008d1

Browse files
committed
Removed explicit check for
CIM as well to help with integration testing test_Servers
1 parent 163dda9 commit c2008d1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

contentctl/objects/config.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -630,9 +630,11 @@ def commonInformationModelInApps(self)->bool:
630630
def ensureCommonInformationModel(self)->Self:
631631
if self.commonInformationModelInApps():
632632
return self
633-
raise ValueError(f"Common Information Model/CIM "
634-
f"(uid: [{COMMON_INFORMATION_MODEL_UID}]) is not listed in apps. "
635-
f"contentctl test MUST include Common Information Model")
633+
print(f"INFO: Common Information Model/CIM "
634+
f"(uid: [{COMMON_INFORMATION_MODEL_UID}]) is not listed in apps.\n"
635+
f"contentctl test MUST include Common Information Model.\n"
636+
f"Please note this message is only informational.")
637+
return self
636638

637639
@model_validator(mode='after')
638640
def suppressTQDM(self)->Self:

0 commit comments

Comments
 (0)