Merge "[CI] Bump timeout for the migrations test case"

This commit is contained in:
Zuul 2019-06-18 21:17:55 +00:00 committed by Gerrit Code Review
commit 1ce9a33f17
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 7 minutes timeout for case of running it on
# NOTE(vponomaryov): set 10 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(420)
@test_utils.set_timeout(600)
def test_walk_versions(self):
"""Walks all version scripts for each tested database.