Call super for skip_checks
Related-Prod: PRODX-11164
Change-Id: I453fb58bf90856b13a2ea67f89d6a5eb201b9508
diff --git a/octavia_tempest_plugin/tests/api/v2/test_healthmonitor.py b/octavia_tempest_plugin/tests/api/v2/test_healthmonitor.py
index a3976cd..3baf36d 100644
--- a/octavia_tempest_plugin/tests/api/v2/test_healthmonitor.py
+++ b/octavia_tempest_plugin/tests/api/v2/test_healthmonitor.py
@@ -36,6 +36,7 @@
@classmethod
def skip_checks(cls):
+ super(HealthMonitorAPITest, cls).skip_checks()
if CONF.load_balancer.provider == 'tungstenfabric':
raise cls.skipException("Health monitor entity isn't applicable "
"in case of TungstenFabric.")
diff --git a/octavia_tempest_plugin/tests/api/v2/test_l7policy.py b/octavia_tempest_plugin/tests/api/v2/test_l7policy.py
index 4dc4055..50cb2f0 100644
--- a/octavia_tempest_plugin/tests/api/v2/test_l7policy.py
+++ b/octavia_tempest_plugin/tests/api/v2/test_l7policy.py
@@ -33,6 +33,7 @@
@classmethod
def skip_checks(cls):
+ super(L7PolicyAPITest, cls).skip_checks()
if CONF.load_balancer.provider == 'tungstenfabric':
raise cls.skipException('Not supported by TungstenFabric.')
diff --git a/octavia_tempest_plugin/tests/api/v2/test_l7rule.py b/octavia_tempest_plugin/tests/api/v2/test_l7rule.py
index 37ed461..7e7d2fb 100644
--- a/octavia_tempest_plugin/tests/api/v2/test_l7rule.py
+++ b/octavia_tempest_plugin/tests/api/v2/test_l7rule.py
@@ -33,6 +33,7 @@
@classmethod
def skip_checks(cls):
+ super(L7RuleAPITest, cls).skip_checks()
if CONF.load_balancer.provider == 'tungstenfabric':
raise cls.skipException('Not supported by TungstenFabric.')
diff --git a/octavia_tempest_plugin/tests/scenario/v2/test_healthmonitor.py b/octavia_tempest_plugin/tests/scenario/v2/test_healthmonitor.py
index 5e3caa8..eafcfc3 100644
--- a/octavia_tempest_plugin/tests/scenario/v2/test_healthmonitor.py
+++ b/octavia_tempest_plugin/tests/scenario/v2/test_healthmonitor.py
@@ -32,6 +32,7 @@
@classmethod
def skip_checks(cls):
+ super(HealthMonitorScenarioTest, cls).skip_checks()
if CONF.load_balancer.provider == 'tungstenfabric':
raise cls.skipException("Health monitor entity isn't applicable "
"in case of TungstenFabric.")
diff --git a/octavia_tempest_plugin/tests/scenario/v2/test_l7policy.py b/octavia_tempest_plugin/tests/scenario/v2/test_l7policy.py
index c98c408..07508ac 100644
--- a/octavia_tempest_plugin/tests/scenario/v2/test_l7policy.py
+++ b/octavia_tempest_plugin/tests/scenario/v2/test_l7policy.py
@@ -30,6 +30,7 @@
@classmethod
def skip_checks(cls):
+ super(L7PolicyScenarioTest, cls).skip_checks()
if CONF.load_balancer.provider == 'tungstenfabric':
raise cls.skipException('Not supported by TungstenFabric.')
diff --git a/octavia_tempest_plugin/tests/scenario/v2/test_l7rule.py b/octavia_tempest_plugin/tests/scenario/v2/test_l7rule.py
index afd5455..7e4be04 100644
--- a/octavia_tempest_plugin/tests/scenario/v2/test_l7rule.py
+++ b/octavia_tempest_plugin/tests/scenario/v2/test_l7rule.py
@@ -30,6 +30,7 @@
@classmethod
def skip_checks(cls):
+ super(L7RuleScenarioTest, cls).skip_checks()
if CONF.load_balancer.provider == 'tungstenfabric':
raise cls.skipException('Not supported by TungstenFabric.')