|
15 | 15 | # limitations under the License.
|
16 | 16 | #
|
17 | 17 |
|
18 |
| -# See https://github.com/project-chip/connectedhomeip/blob/master/docs/testing/python.md#defining-the-ci-test-arguments |
19 |
| -# for details about the block below. |
20 |
| -# |
21 |
| -# FIXME: https://github.com/project-chip/connectedhomeip/issues/36885 |
22 | 18 | # === BEGIN CI TEST ARGUMENTS ===
|
23 | 19 | # test-runner-runs:
|
24 | 20 | # run1:
|
25 |
| -# app: ${CHIP_MICROWAVE_OVEN_APP} |
26 |
| -# app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json |
| 21 | +# app: ${ALL_CLUSTERS_APP} |
| 22 | +# app-args: > |
| 23 | +# --discriminator 1234 |
| 24 | +# --KVS kvs1 |
| 25 | +# --trace-to json:${TRACE_APP}.json |
27 | 26 | # script-args: >
|
28 | 27 | # --storage-path admin_storage.json
|
29 | 28 | # --commissioning-method on-network
|
30 | 29 | # --discriminator 1234
|
31 | 30 | # --passcode 20202021
|
32 |
| -# --PICS src/app/tests/suites/certification/ci-pics-values |
33 | 31 | # --endpoint 1
|
34 | 32 | # --trace-to json:${TRACE_TEST_JSON}.json
|
35 | 33 | # --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
|
@@ -60,8 +58,6 @@ def steps_TC_DEMM_1_2(self) -> list[TestStep]:
|
60 | 58 | TestStep(1, "Commissioning, already done", is_commissioning=True),
|
61 | 59 | TestStep(2, "TH reads from the DUT the SupportedModes attribute."),
|
62 | 60 | TestStep(3, "TH reads from the DUT the CurrentMode attribute."),
|
63 |
| - # TestStep(4, "TH reads from the DUT the OnMode attribute."), |
64 |
| - # TestStep(5, "TH reads from the DUT the StartUpMode attribute.") |
65 | 61 | ]
|
66 | 62 | return steps
|
67 | 63 |
|
@@ -94,18 +90,6 @@ async def test_TC_DEMM_1_2(self):
|
94 | 90 | mode = self.cluster.Attributes.CurrentMode
|
95 | 91 | await self.read_and_check_mode(endpoint=endpoint, mode=mode, supported_modes=supported_modes)
|
96 | 92 |
|
97 |
| - # self.step(4) |
98 |
| - # # Verify that the OnMode attribute has a valid value or null. |
99 |
| - # mode = self.cluster.Attributes.OnMode |
100 |
| - # await self.read_and_check_mode(endpoint=endpoint, mode=mode, |
101 |
| - # supported_modes=supported_modes, is_nullable=True) |
102 |
| - |
103 |
| - # self.step(5) |
104 |
| - # # Verify that the StartUpMode has a valid value or null |
105 |
| - # mode = self.cluster.Attributes.StartUpMode |
106 |
| - # await self.read_and_check_mode(endpoint=endpoint, mode=mode, |
107 |
| - # supported_modes=supported_modes, is_nullable=True) |
108 |
| - |
109 | 93 |
|
110 | 94 | if __name__ == "__main__":
|
111 | 95 | default_matter_test_main()
|
0 commit comments