Skip Heat neutron tests
Heat neutron resource stack tests are failing continuously
on gate. Failure is because of not creating the subnet on network.
This commit skip all tests till bug 1547261 is fixed.
Change-Id: I5317f1cc7ebba26a926898dc54e0109a98ca181f
Related-Bug: #1547261
diff --git a/tempest/api/orchestration/stacks/test_neutron_resources.py b/tempest/api/orchestration/stacks/test_neutron_resources.py
index 09e863e..001bc08 100644
--- a/tempest/api/orchestration/stacks/test_neutron_resources.py
+++ b/tempest/api/orchestration/stacks/test_neutron_resources.py
@@ -30,6 +30,8 @@
@classmethod
def skip_checks(cls):
+ msg = "Skipped until Bug: 1547261 is resolved."
+ raise cls.skipException(msg)
super(NeutronResourcesTestJSON, cls).skip_checks()
if not CONF.service_available.neutron:
raise cls.skipException("Neutron support is required")