From 205d188ff6077218a3eecda58a9d55178bd93b4b Mon Sep 17 00:00:00 2001 From: Timur Nurlygayanov Date: Mon, 25 Apr 2016 16:59:42 +0300 Subject: [PATCH] Increased timeout for Heat OSTF test It looks like Heat OSTF test has small timeouts for operations with stack and we need to increase timeouts to avid false-negative results. Change-Id: Ia24fda69682c7e079414f725fe78b5484a191d35 Closes-Bug: #1567727 --- fuel_health/tests/tests_platform/test_heat.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fuel_health/tests/tests_platform/test_heat.py b/fuel_health/tests/tests_platform/test_heat.py index 3da21682..4329d346 100644 --- a/fuel_health/tests/tests_platform/test_heat.py +++ b/fuel_health/tests/tests_platform/test_heat.py @@ -400,7 +400,7 @@ class HeatSmokeTests(heatmanager.HeatBaseTest): 14. Delete the stack. 15. Wait for the stack to be deleted. - Duration: 1140 s. + Duration: 1300 s. """ self.check_image_exists() @@ -494,7 +494,7 @@ class HeatSmokeTests(heatmanager.HeatBaseTest): template, parameters=parameters ) self.verify( - 100, self.wait_for_stack_status, + 150, self.wait_for_stack_status, 9, fail_msg, 'stack status becoming "UPDATE_COMPLETE"', stack.id, 'UPDATE_COMPLETE' @@ -535,7 +535,7 @@ class HeatSmokeTests(heatmanager.HeatBaseTest): template, parameters=parameters ) self.verify( - 180, self.wait_for_stack_status, + 300, self.wait_for_stack_status, 12, fail_msg, 'stack status becoming "UPDATE_COMPLETE"', stack.id, 'UPDATE_COMPLETE'