[CI] Bump timeout for the migrations test case

We face slow nodes on the CI, and tests are timing
out with a sqllite backend in the gate.

Change-Id: I284b48facf633f54aa5a7ec024a1662a1d164daf
This commit is contained in:
Goutham Pacha Ravi 2019-05-17 10:47:13 -07:00
parent 04fd2c02ed
commit fdefb0e7bd
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.