Skip to content

Commit 85625a7

Browse files
committed
tests/integration: add all the cluster to the session cleanup
cause some of them are missing, we are getting to situations we fail to the the next test session on the github action builders
1 parent ab2b233 commit 85625a7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/integration/conftest.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import pytest
55
from ccmlib.cluster_factory import ClusterFactory as CCMClusterFactory
66

7-
from . import CLUSTER_NAME, SINGLE_NODE_CLUSTER_NAME, MULTIDC_CLUSTER_NAME
7+
from . import CLUSTER_NAME, SINGLE_NODE_CLUSTER_NAME, MULTIDC_CLUSTER_NAME, IPV6_CLUSTER_NAME
88
from . import path as ccm_path
99

1010

@@ -14,8 +14,9 @@ def cleanup_clusters():
1414
yield
1515

1616
if not os.environ.get('DISABLE_CLUSTER_CLEANUP'):
17-
for cluster_name in [CLUSTER_NAME, SINGLE_NODE_CLUSTER_NAME, MULTIDC_CLUSTER_NAME,
18-
'shared_aware', 'sni_proxy', 'test_ip_change']:
17+
for cluster_name in [CLUSTER_NAME, SINGLE_NODE_CLUSTER_NAME, MULTIDC_CLUSTER_NAME, IPV6_CLUSTER_NAME,
18+
'shared_aware', 'sni_proxy', 'test_ip_change', 'tablets', 'test_down_then_removed',
19+
'test_concurrent_schema_change_and_node_kill', 'test_down_then_removed']:
1920
try:
2021
cluster = CCMClusterFactory.load(ccm_path, cluster_name)
2122
logging.debug("Using external CCM cluster {0}".format(cluster.name))

0 commit comments

Comments
 (0)