Skip to content

Commit

Permalink
Merge branch 'master' into Set-3-18-24
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-marquez-csa authored Mar 20, 2024
2 parents 754c14c + b6f8e4f commit 313ea2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/bloat_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

name: Bloat Check
on:
workflow_dispatch:
schedule:
- cron: "*/5 * * * *"

Expand Down Expand Up @@ -49,4 +50,4 @@ jobs:
--github-limit-artifacts 500 \
--github-limit-comments 20 \
--github-repository project-chip/connectedhomeip \
--github-api-token "${{ secrets.GITHUB_TOKEN }}"
--github-api-token "${{ secrets.BLOAT_REPORT }}"
5 changes: 5 additions & 0 deletions src/python_testing/TC_pics_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@ def test_TC_IDM_10_4(self):
checkable_clusters = {cluster_id: cluster for cluster_id, cluster in Clusters.ClusterObjects.ALL_CLUSTERS.items(
) if cluster_id in self.xml_clusters and self.xml_clusters[cluster_id].pics is not None}

# TODO: consider what we want to do with the OTA clusters. They do not currently have PICS codes.
ota_ids = [Clusters.OtaSoftwareUpdateProvider.id, Clusters.OtaSoftwareUpdateRequestor.id]
checkable_clusters = {cluster_id: cluster for cluster_id,
cluster in checkable_clusters.items() if cluster_id not in ota_ids}

self.step(2)
for cluster_id, cluster in checkable_clusters.items():
# Ensure the PICS.S code is correctly marked
Expand Down

0 comments on commit 313ea2d

Please sign in to comment.