Bump Tempest version
Latest Devstack is not compatible with Tempest version
used by Manila after merge of commit [1].
Therefore, bump Tempest's version and fix incompatibilities
with plugin.
[1] I63658b8d8dfa999e0feb79f8f2968f2b32e3ff57
Change-Id: Ib6fb886f8a17ff6419fd75db74f290f821a3d302
diff --git a/manila_tempest_tests/tests/api/admin/test_consistency_groups_negative.py b/manila_tempest_tests/tests/api/admin/test_consistency_groups_negative.py
index 18cf5db..dfccb6a 100644
--- a/manila_tempest_tests/tests/api/admin/test_consistency_groups_negative.py
+++ b/manila_tempest_tests/tests/api/admin/test_consistency_groups_negative.py
@@ -51,7 +51,6 @@
size=cls.share_size,
consistency_group_id=cls.consistency_group['id'],
share_type_id=cls.share_type['id'],
- client=cls.shares_v2_client,
)
# Create a cgsnapshot of the consistency group
@@ -76,7 +75,6 @@
self.create_share,
size=1,
consistency_group_id=self.consistency_group['id'],
- client=self.shares_v2_client,
version='2.4')
@test.attr(type=["negative", "gate", ])
@@ -98,7 +96,6 @@
size=self.share_size,
consistency_group_id=consistency_group['id'],
cleanup_in_class=False,
- client=self.shares_v2_client,
version='2.4')
# deleting
self.shares_v2_client.consistency_group_reset_state(
@@ -111,7 +108,6 @@
size=self.share_size,
consistency_group_id=consistency_group['id'],
cleanup_in_class=False,
- client=self.shares_v2_client,
version='2.4')
# error
self.shares_v2_client.consistency_group_reset_state(
@@ -124,7 +120,6 @@
size=self.share_size,
consistency_group_id=consistency_group['id'],
cleanup_in_class=False,
- client=self.shares_v2_client,
version='2.4')
@test.attr(type=["negative", "gate", ])
@@ -178,7 +173,6 @@
size=share_size,
consistency_group_id=consistency_group['id'],
cleanup_in_class=False,
- client=self.shares_v2_client,
version='2.4',
)
self.shares_client.reset_state(s_id=share['id'])
diff --git a/manila_tempest_tests/tests/api/test_consistency_groups.py b/manila_tempest_tests/tests/api/test_consistency_groups.py
index bebd88f..1f44946 100644
--- a/manila_tempest_tests/tests/api/test_consistency_groups.py
+++ b/manila_tempest_tests/tests/api/test_consistency_groups.py
@@ -46,7 +46,6 @@
# Populate
share = self.create_share(consistency_group_id=consistency_group['id'],
cleanup_in_class=False,
- client=self.shares_v2_client,
version='2.4')
# Delete
params = {"consistency_group_id": consistency_group['id']}
diff --git a/manila_tempest_tests/tests/api/test_consistency_groups_negative.py b/manila_tempest_tests/tests/api/test_consistency_groups_negative.py
index 9e9c696..74d583c 100644
--- a/manila_tempest_tests/tests/api/test_consistency_groups_negative.py
+++ b/manila_tempest_tests/tests/api/test_consistency_groups_negative.py
@@ -47,7 +47,6 @@
description=cls.share_desc,
size=cls.share_size,
consistency_group_id=cls.consistency_group['id'],
- client=cls.shares_v2_client
)
# Create a cgsnapshot of the consistency group
cls.cgsnap_name = data_utils.rand_name("tempest-cgsnap-name")