summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-08-11 16:38:29 +0000
committerGerrit Code Review <review@openstack.org>2020-08-11 16:38:29 +0000
commit06ab946af5aaadf3bf9885055c54caede6fa56c1 (patch)
tree48cc876b7798f5c8ceb512944d84f2babe70324c
parent952959fb872b25d4ad525056012e1667efb4eb60 (diff)
parent56da348b4933de441986a353e1782cf498211344 (diff)
downloadkeystone-06ab946af5aaadf3bf9885055c54caede6fa56c1.tar.gz
Merge "Skip tests to update u-c for PyMySql to 0.10.0"
-rw-r--r--keystone/tests/unit/test_sql_upgrade.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/keystone/tests/unit/test_sql_upgrade.py b/keystone/tests/unit/test_sql_upgrade.py
index 22cb44260..79bd8f409 100644
--- a/keystone/tests/unit/test_sql_upgrade.py
+++ b/keystone/tests/unit/test_sql_upgrade.py
@@ -3503,6 +3503,14 @@ class FullMigration(SqlMigrateBase, unit.TestCase):
class MySQLOpportunisticFullMigration(FullMigration):
FIXTURE = db_fixtures.MySQLOpportunisticFixture
+ def test_migration_003_migrate_unencrypted_credentials(self):
+ self.skip_test_overrides('skipped to update u-c for PyMySql version'
+ 'to 0.10.0')
+
+ def test_migration_012_add_domain_id_to_idp(self):
+ self.skip_test_overrides('skipped to update u-c for PyMySql version'
+ 'to 0.10.0')
+
class PostgreSQLOpportunisticFullMigration(FullMigration):
FIXTURE = db_fixtures.PostgresqlOpportunisticFixture