
Create a Zuul job to check Black Formatter in the code. This commit also applies the Black formatter to the entire project. Test Plan Pass - Success on stx-distcloud-client-tox-black Pass - Success on tox command Story: 2011149 Task: 50393 Change-Id: I5d7b537e83931304ffd5f67ce51e8ebb44f7e65b Signed-off-by: Hugo Brito <hugo.brito@windriver.com>
21 lines
825 B
Python
21 lines
825 B
Python
#
|
|
# Copyright (c) 2021, 2024 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
from dcmanagerclient.commands.v1 import kube_rootca_update_manager as cli_cmd
|
|
from dcmanagerclient.tests import base
|
|
from dcmanagerclient.tests.v1.mixins import UpdateStrategyMixin
|
|
|
|
|
|
class TestKubeRootcaUpdateStrategy(UpdateStrategyMixin, base.BaseCommandTest):
|
|
def setUp(self):
|
|
super().setUp()
|
|
self.sw_update_manager = self.app.client_manager.kube_rootca_update_manager
|
|
self.create_command = cli_cmd.CreateKubeRootcaUpdateStrategy
|
|
self.show_command = cli_cmd.ShowKubeRootcaUpdateStrategy
|
|
self.delete_command = cli_cmd.DeleteKubeRootcaUpdateStrategy
|
|
self.apply_command = cli_cmd.ApplyKubeRootcaUpdateStrategy
|
|
self.abort_command = cli_cmd.AbortKubeRootcaUpdateStrategy
|