Merge "Temporarily skip TestNovaMigrationsMySQL"

This commit is contained in:
Zuul 2019-09-19 03:21:27 +00:00 committed by Gerrit Code Review
commit fb3ba44438
1 changed files with 7 additions and 0 deletions

View File

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