File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -129,10 +129,20 @@ init_per_suite(Config) ->
129
129
end_per_suite (Config ) ->
130
130
rabbit_ct_helpers :run_teardown_steps (Config ).
131
131
132
- init_per_group (mnesia_store , Config ) ->
133
- rabbit_ct_helpers :set_config (Config , [{metadata_store , mnesia }]);
134
132
init_per_group (khepri_store , Config ) ->
135
- rabbit_ct_helpers :set_config (Config , [{metadata_store , khepri }]);
133
+ case rabbit_ct_broker_helpers :configured_metadata_store (Config ) of
134
+ mnesia ->
135
+ {skip , " These tests target Khepri" };
136
+ _ ->
137
+ Config
138
+ end ;
139
+ init_per_group (mnesia_store , Config ) ->
140
+ case rabbit_ct_broker_helpers :configured_metadata_store (Config ) of
141
+ {khepri , _ } ->
142
+ {skip , " These tests target mnesia" };
143
+ _ ->
144
+ Config
145
+ end ;
136
146
init_per_group (unclustered_2_nodes , Config ) ->
137
147
rabbit_ct_helpers :set_config (Config , [{rmq_nodes_clustered , false }]);
138
148
init_per_group (unclustered_3_nodes , Config ) ->
You can’t perform that action at this time.
0 commit comments