Skip to content

Commit 2cbda21

Browse files
the-mikedavismergify[bot]
authored andcommitted
Skip metadata_store_clustering_SUITE in mixed versions testing
Khepri is not yet compatible with mixed-version testing and this suite only tests clustering when Khepri is the metadata store in at least some of the nodes. (cherry picked from commit bda1f7c)
1 parent 1b8a032 commit 2cbda21

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

deps/rabbit/test/metadata_store_clustering_SUITE.erl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,14 @@ cluster_size_3_tests() ->
6060

6161
init_per_suite(Config) ->
6262
rabbit_ct_helpers:log_environment(),
63-
rabbit_ct_helpers:run_setup_steps(Config, []).
63+
case rabbit_ct_helpers:is_mixed_versions() of
64+
true ->
65+
%% Khepri is not yet compatible with mixed version testing and this
66+
%% suite enables Khepri.
67+
{skip, "This suite does not yet support mixed version testing"};
68+
false ->
69+
rabbit_ct_helpers:run_setup_steps(Config, [])
70+
end.
6471

6572
end_per_suite(Config) ->
6673
rabbit_ct_helpers:run_teardown_steps(Config).

0 commit comments

Comments
 (0)