Skip to content

Commit 313ea2d

Browse files
Merge branch 'master' into Set-3-18-24
2 parents 754c14c + b6f8e4f commit 313ea2d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/bloat_check.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
name: Bloat Check
1616
on:
17+
workflow_dispatch:
1718
schedule:
1819
- cron: "*/5 * * * *"
1920

@@ -49,4 +50,4 @@ jobs:
4950
--github-limit-artifacts 500 \
5051
--github-limit-comments 20 \
5152
--github-repository project-chip/connectedhomeip \
52-
--github-api-token "${{ secrets.GITHUB_TOKEN }}"
53+
--github-api-token "${{ secrets.BLOAT_REPORT }}"

src/python_testing/TC_pics_checker.py

+5
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,11 @@ def test_TC_IDM_10_4(self):
122122
checkable_clusters = {cluster_id: cluster for cluster_id, cluster in Clusters.ClusterObjects.ALL_CLUSTERS.items(
123123
) if cluster_id in self.xml_clusters and self.xml_clusters[cluster_id].pics is not None}
124124

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,
128+
cluster in checkable_clusters.items() if cluster_id not in ota_ids}
129+
125130
self.step(2)
126131
for cluster_id, cluster in checkable_clusters.items():
127132
# Ensure the PICS.S code is correctly marked

0 commit comments

Comments
 (0)