Skip to content

Commit

Permalink
Bump up timeouts just a little more
Browse files Browse the repository at this point in the history
  • Loading branch information
tehampson committed Sep 4, 2024
1 parent 8c5c262 commit ca51fc4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_BRBINFO_4_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down
4 changes: 2 additions & 2 deletions src/python_testing/TC_ECOINFO_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions src/python_testing/TC_MCORE_FS_1_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions src/python_testing/TC_MCORE_FS_1_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit ca51fc4

Please sign in to comment.