Skip testcases when shared nets are found in AutoAllocateNetworkTest
Shared nets is common configuration for the system, e.g., if we set
create_isolated_networks = False, we will create a shared net for
all testcases/tenants to use, which is specified by fixed_network_name.
So, when shared nets are found, we should skip the testcase instead of
raising an exception.
Related-Issue: PROD-29645
Cherry-picked from e4f9dfd8f02fe4768cc6b5021aad73f46009942d
Change-Id: I34a89deaf3ad85e18903e05a332c80fe6da27bb2
diff --git a/tempest/api/compute/admin/test_auto_allocate_network.py b/tempest/api/compute/admin/test_auto_allocate_network.py
index a9772c4..c4d5768 100644
--- a/tempest/api/compute/admin/test_auto_allocate_network.py
+++ b/tempest/api/compute/admin/test_auto_allocate_network.py
@@ -84,8 +84,7 @@
nets = cls.networks_client.list_networks(
**search_opts).get('networks', [])
if nets:
- raise lib_excs.TempestException(
- 'Found shared networks: %s' % nets)
+ raise cls.skipException('Found shared networks: %s' % nets)
@classmethod
def resource_cleanup(cls):