Remove unit test class HelmOperatorTestSuiteMixin

The purpose of this change is to remove the
HelmOperatorTestSuiteMixin in the unit tests. This reference is
part of Armada and crashes Zuul because it was removed
here: https://review.opendev.org/c/starlingx/config/+/869094

Test Plan:
PASS build-pkgs -p python3-k8sapp-ptp-notification
PASS build-pkgs -p stx-ptp-notification-helm
PASS unit test is performed successfully

Story: 2010560
Task: 48749

Change-Id: I3a86c21cb0ee6168420174dd18aa1e0c198b50ab
Signed-off-by: David Barbosa Bastos <david.barbosabastos@windriver.com>
This commit is contained in:
David Barbosa Bastos 2023-09-07 09:11:28 -03:00
parent 0dae44b92d
commit 1304260f12

View File

@ -6,7 +6,6 @@
from sysinv.common import constants
from sysinv.tests.db import base as dbbase
from sysinv.tests.helm.test_helm import HelmOperatorTestSuiteMixin
class K8SAppPTPNotificationAppMixin(object):
@ -25,7 +24,6 @@ class K8SAppPTPNotificationAppMixin(object):
class K8sAppPTPNotificationControllerTestCase(K8SAppPTPNotificationAppMixin,
dbbase.BaseIPv6Mixin,
dbbase.BaseCephStorageBackendMixin,
HelmOperatorTestSuiteMixin,
dbbase.ControllerHostTestCase):
pass
@ -37,6 +35,5 @@ class K8sAppPTPNotificationControllerTestCase(K8SAppPTPNotificationAppMixin,
# - ptp-notification app
class K8SAppPTPNotificationAIOTestCase(K8SAppPTPNotificationAppMixin,
dbbase.BaseCephStorageBackendMixin,
HelmOperatorTestSuiteMixin,
dbbase.AIOSimplexHostTestCase):
pass