Temporarily skip TestNovaMigrationsMySQL

We are hitting bug 1823251 more frequently again close to the Ussuri
Feature Freeze. So let's temporary turn of the unstable patches. We
don't have patches in the queue with DB model changes so loosing this
coverage is not super critical.

Change-Id: I51039c4c5817add873a289234ab79569d2520cb3
Related-Bug: #1823251
This commit is contained in:
Matt Riedemann 2019-09-18 19:55:14 -04:00 committed by Balazs Gibizer
parent 874c2fe329
commit 316fef22c6
1 changed files with 7 additions and 0 deletions

View File

@ -1066,6 +1066,13 @@ class TestNovaMigrationsMySQL(NovaMigrationsCheckers,
testtools.TestCase):
FIXTURE = test_fixtures.MySQLOpportunisticFixture
def setUp(self):
super(TestNovaMigrationsMySQL, self).setUp()
# TODO(mriedem): Revert this change before Ussuri RC1 since this is a
# temporary measure to merge code post-feature-freeze in Ussuri which
# continually keeps failing gate runs due to bug 1823251.
self.skipTest('Skip due to bug 1823251 but unskip before Ussuri RC1.')
def test_innodb_tables(self):
with mock.patch.object(sa_migration, 'get_engine',
return_value=self.migrate_engine):