Skip to content

Commit

Permalink
Extend the timeouts for create / backup / snapshot test (#390)
Browse files Browse the repository at this point in the history
On OSCI it's variable whether the test will pass as it's very close to
the timeout.  Extend it to give the test a reliable chance to pass.
  • Loading branch information
ajkavanagh committed Aug 21, 2020
1 parent 7ac5bc3 commit 287cc77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zaza/openstack/charm_tests/cinder_backup/tests.py
Expand Up @@ -97,7 +97,7 @@ def test_410_cinder_vol_create_backup_delete_restore_pool_inspect(self):
self.cinder_client.volumes,
cinder_vol.id,
wait_iteration_max_time=180,
stop_after_attempt=15,
stop_after_attempt=30,
expected_status='available',
msg='Volume status wait')

Expand All @@ -109,7 +109,7 @@ def test_410_cinder_vol_create_backup_delete_restore_pool_inspect(self):
self.cinder_client.backups,
vol_backup.id,
wait_iteration_max_time=180,
stop_after_attempt=15,
stop_after_attempt=30,
expected_status='available',
msg='Volume status wait')
# Delete the volume
Expand Down

0 comments on commit 287cc77

Please sign in to comment.