Skip to content

Commit d9460ec

Browse files
authored
TC-ACE-2.1/2: Update default timeout (project-chip#31643)
* TC-ACE-2.1/2: Update default timeout * Fix default timeout Hey, you know what helps? Committing changes in the correct branch before uploading.
1 parent 523fea6 commit d9460ec

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/python_testing/TC_AccessChecker.py

+6
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ async def setup_class(self):
6262
self.TH2_nodeid = self.matter_test_config.controller_node_id + 1
6363
self.TH2 = fabric_admin.NewController(nodeId=self.TH2_nodeid)
6464

65+
# Both the tests in this suite are potentially long-running if there are a large number of attributes on the DUT
66+
# and the network is slow. Set the default to 3 minutes to account for this.
67+
@property
68+
def default_timeout(self) -> int:
69+
return 180
70+
6571
@async_test_body
6672
async def setup_test(self):
6773
super().setup_test()

0 commit comments

Comments
 (0)