Merge "Bump timeout on sqlalchemy migration test"

This commit is contained in:
Zuul 2019-03-12 16:57:32 +00:00 committed by Gerrit Code Review
commit 270f01183e
1 changed files with 2 additions and 2 deletions

View File

@ -139,13 +139,13 @@ class ManilaMigrationsCheckers(test_migrations.WalkVersionsMixin,
'exception': e})
raise
# NOTE(vponomaryov): set 5 minutes timeout for case of running it on
# NOTE(vponomaryov): set 7 minutes timeout for case of running it on
# very slow nodes/VMs. Note, that this test becomes slower with each
# addition of new DB migration. On fast nodes it can take about 5-10 secs
# having Mitaka set of migrations.
# 'pymysql' works much slower on slow nodes than 'psycopg2'. And such
# timeout mostly required for testing of 'mysql' backend.
@test_utils.set_timeout(300)
@test_utils.set_timeout(420)
def test_walk_versions(self):
"""Walks all version scripts for each tested database.