From ca51fc483b2bb95d49a2279f3bb65fcc717467c1 Mon Sep 17 00:00:00 2001 From: Terence Hampson Date: Wed, 4 Sep 2024 20:21:54 +0000 Subject: [PATCH] Bump up timeouts just a little more --- src/python_testing/TC_BRBINFO_4_1.py | 4 ++-- src/python_testing/TC_ECOINFO_2_2.py | 4 ++-- src/python_testing/TC_MCORE_FS_1_2.py | 4 ++-- src/python_testing/TC_MCORE_FS_1_5.py | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/python_testing/TC_BRBINFO_4_1.py b/src/python_testing/TC_BRBINFO_4_1.py index e22b0b26759a44..5ca573b60c1b71 100644 --- a/src/python_testing/TC_BRBINFO_4_1.py +++ b/src/python_testing/TC_BRBINFO_4_1.py @@ -48,10 +48,10 @@ async def _read_attribute_expect_success(self, endpoint, cluster, attribute, nod return await self.read_single_attribute_check_success(endpoint=endpoint, cluster=cluster, attribute=attribute, node_id=node_id) # This test has some manual steps and also multiple sleeps for over 30 seconds. Test typically runs under 3 mins, - # so 5 minutes is more than enough. + # so 6 minutes is more than enough. @property def default_timeout(self) -> int: - return 5*60 + return 6*60 def desc_TC_BRBINFO_4_1(self) -> str: """Returns a description of this test""" diff --git a/src/python_testing/TC_ECOINFO_2_2.py b/src/python_testing/TC_ECOINFO_2_2.py index 9cc3bc26b76dd2..24f39ab93f2a04 100644 --- a/src/python_testing/TC_ECOINFO_2_2.py +++ b/src/python_testing/TC_ECOINFO_2_2.py @@ -42,11 +42,11 @@ def steps_TC_ECOINFO_2_2(self) -> list[TestStep]: return steps - # This test has some manual steps, so we need a longer timeout. Test typically runs under 1 mins so 2 mins should + # This test has some manual steps, so we need a longer timeout. Test typically runs under 1 mins so 3 mins should # be enough time for test to run @property def default_timeout(self) -> int: - return 2*60 + return 3*60 @async_test_body async def test_TC_ECOINFO_2_2(self): diff --git a/src/python_testing/TC_MCORE_FS_1_2.py b/src/python_testing/TC_MCORE_FS_1_2.py index 2ace7b0faa1003..816abe5d876b00 100644 --- a/src/python_testing/TC_MCORE_FS_1_2.py +++ b/src/python_testing/TC_MCORE_FS_1_2.py @@ -117,11 +117,11 @@ def steps_TC_MCORE_FS_1_2(self) -> list[TestStep]: TestStep(7, "TH reads all attributes in the Bridged Device Basic Information cluster on new endpoint identified in step 3 from the DUT_FSA")] return steps - # This test has some manual steps, so we need a longer timeout. Test typically runs under 1 mins so 2 mins should + # This test has some manual steps, so we need a longer timeout. Test typically runs under 1 mins so 3 mins should # be enough time for test to run @property def default_timeout(self) -> int: - return 2*60 + return 3*60 @async_test_body async def test_TC_MCORE_FS_1_2(self): diff --git a/src/python_testing/TC_MCORE_FS_1_5.py b/src/python_testing/TC_MCORE_FS_1_5.py index e9a3f64285d669..df80072d5126e3 100755 --- a/src/python_testing/TC_MCORE_FS_1_5.py +++ b/src/python_testing/TC_MCORE_FS_1_5.py @@ -117,11 +117,11 @@ def steps_TC_MCORE_FS_1_5(self) -> list[TestStep]: TestStep(10, "TH waits up to 10 seconds for subscription report from the AdministratorCommissioning attribute (from step 6) to reflect values from previous step")] return steps - # This test has some manual steps, so we need a longer timeout. Test typically runs under 1 mins so 2 mins should + # This test has some manual steps, so we need a longer timeout. Test typically runs under 1 mins so 3 mins should # be enough time for test to run @property def default_timeout(self) -> int: - return 2*60 + return 3*60 @async_test_body async def test_TC_MCORE_FS_1_5(self):