From d372a226dc500a7e2e7ee8056c67f8e01e5a37f0 Mon Sep 17 00:00:00 2001 From: Amrita Mahapatra <49347640+amr1ta@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:58:55 +0530 Subject: [PATCH] Added a temporary test will remove later Signed-off-by: Amrita Mahapatra <49347640+amr1ta@users.noreply.github.com> --- tests/functional/test_temp.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/functional/test_temp.py diff --git a/tests/functional/test_temp.py b/tests/functional/test_temp.py new file mode 100644 index 00000000000..f49d6186b19 --- /dev/null +++ b/tests/functional/test_temp.py @@ -0,0 +1,10 @@ +from ocs_ci.deployment.baremetal import clean_disk +from ocs_ci.ocs.node import get_nodes +from ocs_ci.ocs import constants + + +def test_fun(): + worker_node_objs = get_nodes(node_type=constants.WORKER_MACHINE) + print(f"worker nodes: {worker_node_objs}") + for worker in worker_node_objs: + clean_disk(worker)