File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,19 @@ end_per_suite(Config) ->
72
72
rabbit_ct_helpers :run_teardown_steps (Config ).
73
73
74
74
init_per_group (khepri_store , Config ) ->
75
- rabbit_ct_helpers :set_config (Config , [{metadata_store , khepri }]);
75
+ case rabbit_ct_broker_helpers :configured_metadata_store (Config ) of
76
+ mnesia ->
77
+ {skip , " These tests target Khepri" };
78
+ _ ->
79
+ Config
80
+ end ;
76
81
init_per_group (mnesia_store , Config ) ->
77
- rabbit_ct_helpers :set_config (Config , [{metadata_store , mnesia }]);
82
+ case rabbit_ct_broker_helpers :configured_metadata_store (Config ) of
83
+ {khepri , _ } ->
84
+ {skip , " These tests target mnesia" };
85
+ _ ->
86
+ Config
87
+ end ;
78
88
init_per_group (clustered_3_nodes , Config ) ->
79
89
rabbit_ct_helpers :set_config (Config , [{rmq_nodes_clustered , true }]);
80
90
init_per_group (clustered_5_nodes , Config ) ->
You can’t perform that action at this time.
0 commit comments