diff options
author | Cristina Pauna <cristina.pauna@enea.com> | 2017-10-13 11:54:09 +0300 |
---|---|---|
committer | Cristina Pauna <cristina.pauna@enea.com> | 2017-10-13 17:57:17 +0300 |
commit | f53a90c63227c9faca8c8f7da6fa0dff48538662 (patch) | |
tree | 9ed97079a92d0212bf3417ad07691c767ecb8a79 | |
parent | cef5b452099579a3f69a5c233b7ba25bd0d80f5c (diff) |
Move CreateInstancePubPrivNetTests test to staging
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>
-rw-r--r-- | snaps/test_suite_builder.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/snaps/test_suite_builder.py b/snaps/test_suite_builder.py index 9988182..1d76e97 100644 --- a/snaps/test_suite_builder.py +++ b/snaps/test_suite_builder.py @@ -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)) |