Use Tempest-lib's compute security_group_rules_client
Compute security_group_rules_client has been migrated to
tempest-lib- I2be5d9983dd31a2af455fdb5c495227f22b3f575
Now Tempest-lib provides this client as stable interface so Tempest
should start using this from lib and remove its own copy.
Also remove its unit tests.
This commits makes Tempest to use compute security_group_rules_client
from Tempest-lib.
NOTE- There are difference between migrated files and current tempest file
for H404, H405 fix - I3abac40ebb33836980c119d59bc97f035b213c0a
But those are already taken care in lib.
Change-Id: Ibeef0417ab40504da113731dc7c4e7005401b714
diff --git a/tempest/clients.py b/tempest/clients.py
index 2a2e0d3..a5f51c3 100644
--- a/tempest/clients.py
+++ b/tempest/clients.py
@@ -51,6 +51,8 @@
from tempest_lib.services.compute.quotas_client import QuotasClient
from tempest_lib.services.compute.security_group_default_rules_client import \
SecurityGroupDefaultRulesClient
+from tempest_lib.services.compute.security_group_rules_client import \
+ SecurityGroupRulesClient
from tempest_lib.services.compute.security_groups_client import \
SecurityGroupsClient as ComputeSecurityGroupsClient
from tempest_lib.services.compute.services_client import ServicesClient
@@ -73,8 +75,6 @@
from tempest.services.baremetal.v1.json.baremetal_client import \
BaremetalClient
from tempest.services.compute.json.keypairs_client import KeyPairsClient
-from tempest.services.compute.json.security_group_rules_client import \
- SecurityGroupRulesClient
from tempest.services.compute.json.server_groups_client import \
ServerGroupsClient
from tempest.services.compute.json.servers_client import ServersClient