We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca4607d + d9460ec commit 7a4f5ffCopy full SHA for 7a4f5ff
src/python_testing/TC_AccessChecker.py
@@ -62,6 +62,12 @@ async def setup_class(self):
62
self.TH2_nodeid = self.matter_test_config.controller_node_id + 1
63
self.TH2 = fabric_admin.NewController(nodeId=self.TH2_nodeid)
64
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
+
71
@async_test_body
72
async def setup_test(self):
73
super().setup_test()
0 commit comments