Skip to content

Commit 82a6c00

Browse files
committed
Increase timeout in per_endpoint_runner
1 parent 95ee157 commit 82a6c00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_testing/matter_testing_support.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2060,7 +2060,7 @@ def per_endpoint_test(accept_function: EndpointCheckFunction):
20602060
def per_endpoint_test_internal(body):
20612061
def per_endpoint_runner(self: MatterBaseTest, *args, **kwargs):
20622062
asserts.assert_false(self.get_test_pics(self.current_test_info.name), "pics_ method supplied for per_endpoint_test.")
2063-
runner_with_timeout = asyncio.wait_for(get_accepted_endpoints_for_test(self, accept_function), timeout=30)
2063+
runner_with_timeout = asyncio.wait_for(get_accepted_endpoints_for_test(self, accept_function), timeout=60)
20642064
endpoints = asyncio.run(runner_with_timeout)
20652065
if not endpoints:
20662066
logging.info("No matching endpoints found - skipping test")

0 commit comments

Comments
 (0)