commit | e73980475c4c247d076a32399da647cfc4791efd | [log] [tgz] |
---|---|---|
author | zhufl <zhu.fanglei@zte.com.cn> | Tue Mar 13 16:20:18 2018 +0800 |
committer | zhufl <zhu.fanglei@zte.com.cn> | Tue Mar 13 16:20:18 2018 +0800 |
tree | 541cd9030582d171830f4499b40255f0ce6f0fe1 | |
parent | fa64e6f520acaebb72925b92f516b1e7be0d6fc4 [diff] |
Set max_microversion 2.42 for hosts tests The compute os-hosts API is deprecated as of the 2.43 microversion, so we should set max_microversion = '2.42' for hosts tests. ref: https://developer.openstack.org/api-ref/compute/#list-hosts Change-Id: Icc320de1fac272c8973edada7a556079b3dbf5a7
diff --git a/tempest/api/compute/admin/test_hosts.py b/tempest/api/compute/admin/test_hosts.py index 00f3256..c246685 100644 --- a/tempest/api/compute/admin/test_hosts.py +++ b/tempest/api/compute/admin/test_hosts.py
@@ -20,6 +20,8 @@ class HostsAdminTestJSON(base.BaseV2ComputeAdminTest): """Tests hosts API using admin privileges.""" + max_microversion = '2.42' + @classmethod def setup_clients(cls): super(HostsAdminTestJSON, cls).setup_clients()
diff --git a/tempest/api/compute/admin/test_hosts_negative.py b/tempest/api/compute/admin/test_hosts_negative.py index 5bd8104..8a91ae2 100644 --- a/tempest/api/compute/admin/test_hosts_negative.py +++ b/tempest/api/compute/admin/test_hosts_negative.py
@@ -20,6 +20,8 @@ class HostsAdminNegativeTestJSON(base.BaseV2ComputeAdminTest): """Tests hosts API using admin privileges.""" + max_microversion = '2.42' + @classmethod def setup_clients(cls): super(HostsAdminNegativeTestJSON, cls).setup_clients()