We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4601714 commit 4366db4Copy full SHA for 4366db4
src/python_testing/TC_pics_checker.py
@@ -122,6 +122,10 @@ def test_TC_IDM_10_4(self):
122
checkable_clusters = {cluster_id: cluster for cluster_id, cluster in Clusters.ClusterObjects.ALL_CLUSTERS.items(
123
) if cluster_id in self.xml_clusters and self.xml_clusters[cluster_id].pics is not None}
124
125
+ # TODO: consider what we want to do with the OTA clusters. They do not currently have PICS codes.
126
+ ota_ids = [Clusters.OtaSoftwareUpdateProvider.id Clusters.OtaSoftwareUpdateRequestor.id]
127
+ checkable_clusters = {cluster_id: cluster for cluster_id, cluster in checkable_clusters if cluster_id not in ota_clusters}
128
+
129
self.step(2)
130
for cluster_id, cluster in checkable_clusters.items():
131
# Ensure the PICS.S code is correctly marked
0 commit comments