Skip to content

Commit bda1f7c

Browse files
committed
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.
1 parent e08310a commit bda1f7c

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
@@ -58,7 +58,14 @@ cluster_size_3_tests() ->
5858

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

6370
end_per_suite(Config) ->
6471
rabbit_ct_helpers:run_teardown_steps(Config).

0 commit comments

Comments
 (0)