Disable Murano tests

Exclude murano and ceilometer roles from cluster.

Change-Id: Ib46dcbdd2a1b2806f438432af4dd758dfff3a549
Closes-Bug: 1671381
This commit is contained in:
Dmitry Belyaninov 2017-03-10 08:50:13 +01:00 committed by Vladimir Khlyunev
parent 63eb2e2aa4
commit 396a3d534f
1 changed files with 5 additions and 9 deletions

View File

@ -425,14 +425,14 @@ class MultiroleComputeCinder(TestBasic):
class MultiroleMultipleServices(TestBasic):
"""MultiroleMultipleServices.""" # TODO documentation
@test(depends_on=[SetupEnvironment.prepare_slaves_5],
@test(depends_on=[SetupEnvironment.prepare_slaves_3],
groups=["deploy_multiple_services_local_mirror"])
@log_snapshot_after_test
def deploy_multiple_services_local_mirror(self):
"""Deploy cluster with multiple services using local mirror
Scenario:
1. Revert snapshot 'prepare_slaves_5' with default set of mirrors
1. Revert snapshot 'prepare_slaves_3' with default set of mirrors
2. Run 'fuel-mirror' to create mirror repositories
3. Create cluster with many components to check as many
packages in local mirrors have correct dependencies
@ -445,7 +445,7 @@ class MultiroleMultipleServices(TestBasic):
Duration 140m
"""
self.show_step(1)
self.env.revert_snapshot('ready_with_5_slaves')
self.env.revert_snapshot('ready_with_3_slaves')
self.show_step(2)
admin_ip = self.ssh_manager.admin_ip
@ -468,8 +468,6 @@ class MultiroleMultipleServices(TestBasic):
'net_provider': 'neutron',
'net_segment_type': NEUTRON_SEGMENT['tun'],
'sahara': True,
'murano': True,
'ceilometer': True,
'volumes_lvm': True,
'volumes_ceph': False,
'images_ceph': True
@ -486,9 +484,7 @@ class MultiroleMultipleServices(TestBasic):
{
'slave-01': ['controller', 'ceph-osd'],
'slave-02': ['compute', 'ceph-osd'],
'slave-03': ['cinder', 'ceph-osd'],
'slave-04': ['mongo'],
'slave-05': ['mongo']
'slave-03': ['cinder', 'ceph-osd']
}
)
@ -510,7 +506,7 @@ class MultiroleMultipleServices(TestBasic):
self.show_step(7)
self.fuel_web.run_ostf(
cluster_id=cluster_id,
test_sets=['ha', 'smoke', 'sanity'])
test_sets=['smoke'])
@test