[gate fix] Run resize-* for MySQL only

With the advent of different clouds running tests in the gate,
resize-volume and resize-instance have been failing sporadically. With
the sheer number of jobs that trove runs, the odds of having these tests
pass has dropped to almost zero. In order to facilitate the test runs
passing, these tests have be limited to just MySQL.

They can be re-enabled once the bugs have been fixed. Note that
the issues may be in the neutron devstack setup (or something
related to xenial) and not in the trove code specifically.

Note that the way the groups are set up, instance_error
and isntance_force_delete are also relegated to MySQL only.
Since these are datastore agnostic tests, that should
not be a problem.

Change-Id: I9c6016c6fd2f37918f1ad4fee51b6f3682f1e15b
Related-Bug: 1657249
This commit is contained in:
Peter Stachowski 2017-01-17 22:26:00 +00:00
parent 4bbfa7ca55
commit d936d6775c
1 changed files with 2 additions and 1 deletions

View File

@ -236,7 +236,7 @@ user_actions_groups = list(instance_create_groups)
user_actions_groups.extend([user_actions_group.GROUP])
# groups common to all datastores
common_groups = list(instance_groups)
common_groups = list(instance_create_groups)
common_groups.extend([guest_log_groups, instance_init_groups, module_groups])
# Register: Component based groups
@ -343,6 +343,7 @@ register(
backup_incremental_groups,
configuration_groups,
database_actions_groups,
instance_groups,
instance_upgrade_groups,
root_actions_groups,
user_actions_groups, ],