Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Jul 31, 2024
1 parent 116afa4 commit 3d6fc0b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/integration/tests/test_clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import List

import pytest
from test_util import harness, util, config
from test_util import config, harness, util

LOG = logging.getLogger(__name__)

Expand Down Expand Up @@ -65,8 +65,11 @@ def test_worker_nodes(instances: List[harness.Instance]):
node["metadata"]["name"] for node in nodes
], f"only {cluster_node.id} should be left in cluster"


@pytest.mark.node_count(3)
@pytest.mark.bootstrap_config((config.MANIFESTS_DIR / "bootstrap-no-k8s-node-remove.yaml").read_text())
@pytest.mark.bootstrap_config(
(config.MANIFESTS_DIR / "bootstrap-no-k8s-node-remove.yaml").read_text()
)
def test_no_remove(instances: List[harness.Instance]):
cluster_node = instances[0]
joining_cp = instances[1]
Expand Down

0 comments on commit 3d6fc0b

Please sign in to comment.