nomos-e2e-tests/tests/e2e/test_2node_alive.py

15 lines
434 B
Python
Raw Permalink Normal View History

import pytest
2024-12-20 16:14:47 +08:00
from src.env_vars import CFGSYNC, NOMOS, NOMOS_EXECUTOR
from src.libs.custom_logger import get_custom_logger
2024-12-19 16:02:57 +08:00
from src.node.nomos_node import NomosNode
from src.steps.common import StepsCommon
2024-12-19 16:02:57 +08:00
logger = get_custom_logger(__name__)
2024-12-19 16:02:57 +08:00
class Test2NodeClAlive(StepsCommon):
@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!")