From e137cd003b93d641189ba4d2c0dd1effe4795ba4 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Tue, 25 Sep 2018 14:28:22 +0200 Subject: [PATCH] Mark NetworkMigrationFromHA scenario tests as unstable We know that those tests are failing 100% times because router ports are not going DOWN when router's admin_state_up is set to FALSE. Let's make it unstable until this issue will be resolved to make scenario jobs passing at least sometimes ;) Change-Id: Ia9e4af5d798a769c5ff7056e686632bac6f79aec Related-Bug: #1789434 --- neutron_tempest_plugin/scenario/test_migration.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neutron_tempest_plugin/scenario/test_migration.py b/neutron_tempest_plugin/scenario/test_migration.py index f4b918c2..3d6c1dd6 100644 --- a/neutron_tempest_plugin/scenario/test_migration.py +++ b/neutron_tempest_plugin/scenario/test_migration.py @@ -173,11 +173,13 @@ class NetworkMigrationFromLegacy(NetworkMigrationTestBase): class NetworkMigrationFromHA(NetworkMigrationTestBase): + @common_utils.unstable_test("bug 1789434") @decorators.idempotent_id('b4e68ac0-3b76-4306-ae8a-51cf4d363b22') def test_from_ha_to_legacy(self): self._test_migration(before_dvr=False, before_ha=True, after_dvr=False, after_ha=False) + @common_utils.unstable_test("bug 1789434") @decorators.idempotent_id('42260eea-5d56-4d30-b62a-a62694dfe4d5') @testtools.skipUnless( CONF.neutron_plugin_options.l3_agent_mode == 'dvr_snat', @@ -186,6 +188,7 @@ class NetworkMigrationFromHA(NetworkMigrationTestBase): self._test_migration(before_dvr=False, before_ha=True, after_dvr=True, after_ha=False) + @common_utils.unstable_test("bug 1789434") @decorators.idempotent_id('e4149576-248b-43fa-9d0b-a5c2f51967ce') @testtools.skipUnless( CONF.neutron_plugin_options.l3_agent_mode == 'dvr_snat',