Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherrypick #37052 into the 1.4 branch #37472

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/py_matter_yamltests/matter_yamltests/yaml_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@
_TEST_STEP_RESPONSE_CONSTRAINTS_SCHEMA = {
'hasValue': bool,
'type': str,
'minLength': int,
'maxLength': int,
'minLength': (int, str), # Can be a variable.
'maxLength': (int, str), # Can be a variable.
'isHexString': bool,
'startsWith': str,
'endsWith': str,
Expand Down
21 changes: 18 additions & 3 deletions src/app/tests/suites/certification/PICS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6482,21 +6482,36 @@ PICS:
- label: "Does the device implement the PresetTypes attribute?"
id: TSTAT.S.A0048

- label: "Does the device implement the ScheduleTypes attribute?"
id: TSTAT.S.A0049

- label: "Does the device implement the NumberOfPresets attribute?"
id: TSTAT.S.A004a

- label: "Does the device implement the NumberOfSchedules attribute?"
id: TSTAT.S.A004b

- label:
"Does the device implement the NumberOfScheduleTransitions attribute?"
id: TSTAT.S.A004c

- label:
"Does the device implement the NumberOfScheduleTransitionPerDay
attribute?"
id: TSTAT.S.A004d

- label: "Does the device implement the ActivePresetHandle attribute?"
id: TSTAT.S.A004e

- label: "Does the device implement the ActiveScheduleHandle attribute?"
id: TSTAT.S.A004f

- label: "Does the device implement the Presets attribute?"
id: TSTAT.S.A0050

- label: "Does the device implement the Schedules attribute?"
id: TSTAT.S.A0051

- label: "Does the device implement the Schedules attribute?"
id: TSTAT.S.A0051

- label:
"Does the device implement the SetpointHoldExpiryTimestamp attribute?"
id: TSTAT.S.A0052
Expand Down
Loading
Loading