From 40f68e35389cf19d3fb200d1655ecb055c85d1eb Mon Sep 17 00:00:00 2001 From: George Paraskevopoulos Date: Fri, 23 Sep 2016 16:40:13 +0300 Subject: Move sfc custom flavor creation The custom flavor that is needed for the sfc test case is created in the tacker deployment phase. The result of this is that when we use alternative methods of deploying tacker (i.e. the tacker fuel plugin) the test fails. Changes: - Move the flavor creation inside the test case code - Add an optional public parameter in the [get_or_]create_flavor utility functions. Change-Id: Iea13f172076770dde3876b7e27edc9b7ca9b28db Signed-off-by: George Paraskevopoulos --- testcases/features/sfc/sfc_colorado1.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'testcases/features/sfc/sfc_colorado1.py') diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py index 103d10b18..5b04c32a9 100755 --- a/testcases/features/sfc/sfc_colorado1.py +++ b/testcases/features/sfc/sfc_colorado1.py @@ -160,6 +160,12 @@ def main(): port_range_min=22, port_range_max=22) + _, custom_flv_id = os_utils.get_or_create_flavor( + 'custom', 1500, 10, 1, public=True) + if not custom_flv_id: + logger.error("Failed to create custom flavor") + sys.exit(1) + iterator = 0 while(iterator < 6): # boot INSTANCE -- cgit 1.2.3-korg