2025-01-17 14:23:52 +08:00
|
|
|
import pytest
|
|
|
|
|
2024-12-20 16:14:47 +08:00
|
|
|
from src.env_vars import CFGSYNC, NOMOS, NOMOS_EXECUTOR
|
2025-01-13 16:07:13 +08:00
|
|
|
from src.libs.custom_logger import get_custom_logger
|
2024-12-19 16:02:57 +08:00
|
|
|
from src.node.nomos_node import NomosNode
|
2025-01-17 14:23:52 +08:00
|
|
|
from src.steps.common import StepsCommon
|
2024-12-19 16:02:57 +08:00
|
|
|
|
2025-01-13 16:07:13 +08:00
|
|
|
logger = get_custom_logger(__name__)
|
|
|
|
|
2024-12-19 16:02:57 +08:00
|
|
|
|
2025-01-17 14:23:52 +08:00
|
|
|
class Test2NodeClAlive(StepsCommon):
|
2025-01-21 14:55:26 +08:00
|
|
|
@pytest.mark.usefixtures("setup_2_node_cluster")
|
2024-12-19 16:02:57 +08:00
|
|
|
def test_cluster_start(self):
|
2025-01-17 14:56:41 +08:00
|
|
|
logger.debug("Two node cluster started successfully!")
|