Move CreateInstancePubPrivNetTests test to staging 03/45003/3
authorCristina Pauna <cristina.pauna@enea.com>
Fri, 13 Oct 2017 08:54:09 +0000 (11:54 +0300)
committerCristina Pauna <cristina.pauna@enea.com>
Fri, 13 Oct 2017 14:57:17 +0000 (17:57 +0300)
CreateInstancePubPrivNetTests is failing on Fuel and it seems that the
test is not behaving as expected on all pods. SNAPS-191 was created to
refactor the code so until that is fixed we should not run this test
in functest.

JIRA: SNAPS-184

Change-Id: I2286b9fab72e705092a521cd3611a63a8e12f855
Signed-off-by: Cristina Pauna <cristina.pauna@enea.com>
snaps/test_suite_builder.py

index 9988182..1d76e97 100644 (file)
@@ -415,11 +415,6 @@ def add_openstack_integration_tests(suite, os_creds, ext_net_name,
             ext_net_name=ext_net_name, use_keystone=use_keystone,
             flavor_metadata=flavor_metadata, image_metadata=image_metadata,
             log_level=log_level))
-        suite.addTest(OSIntegrationTestCase.parameterize(
-            CreateInstancePubPrivNetTests, os_creds=os_creds,
-            ext_net_name=ext_net_name, use_keystone=use_keystone,
-            flavor_metadata=flavor_metadata, image_metadata=image_metadata,
-            log_level=log_level))
         # TODO - uncomment after all OPNFV projects have cut a stable/euphrates
         # branch as this test was not meant to be exercised until F
         # suite.addTest(OSIntegrationTestCase.parameterize(
@@ -512,3 +507,8 @@ def add_openstack_staging_tests(suite, os_creds, ext_net_name,
     suite.addTest(OSComponentTestCase.parameterize(
         CreateInstanceMockOfflineTests, os_creds=os_creds,
         ext_net_name=ext_net_name, log_level=log_level))
+    suite.addTest(OSIntegrationTestCase.parameterize(
+            CreateInstancePubPrivNetTests, os_creds=os_creds,
+            ext_net_name=ext_net_name, use_keystone=use_keystone,
+            flavor_metadata=flavor_metadata, image_metadata=image_metadata,
+            log_level=log_level))