Skip to content

Commit 7d94bc1

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 6ec6486 commit 7d94bc1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/integration/conftest.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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, 'cluster_tests', 'ipv6_test_cluster',
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)