File tree 1 file changed +8
-4
lines changed
deps/rabbitmq_recent_history_exchange/test
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,15 @@ end_per_suite(Config) ->
58
58
rabbit_ct_helpers :run_teardown_steps (Config ).
59
59
60
60
init_per_group (mnesia_store , Config ) ->
61
- rabbit_ct_helpers :set_config (Config , [{metadata_store , mnesia }]);
61
+ case rabbit_ct_broker_helpers :configured_metadata_store (Config ) of
62
+ {khepri , _ } -> {skip , " These tests target Mnesia" };
63
+ _ -> Config
64
+ end ;
62
65
init_per_group (khepri_store , Config ) ->
63
- rabbit_ct_helpers :set_config (
64
- Config ,
65
- [{metadata_store , {khepri , [khepri_db ]}}]);
66
+ case rabbit_ct_broker_helpers :configured_metadata_store (Config ) of
67
+ mnesia -> {skip , " These tests target Khepri" };
68
+ _ -> Config
69
+ end ;
66
70
init_per_group (_ , Config ) ->
67
71
Config1 = rabbit_ct_helpers :set_config (Config , [
68
72
{rmq_nodename_suffix , ? MODULE },
You can’t perform that action at this time.
0 commit comments