Skip to content

Commit 7d6b4f4

Browse files
kjnilssonmergify[bot]
authored andcommitted
speed up policy_SUITE
(cherry picked from commit 087d701) # Conflicts: # deps/rabbit/test/policy_SUITE.erl
1 parent 26ae908 commit 7d6b4f4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

deps/rabbit/test/policy_SUITE.erl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,23 @@
1313
-include_lib("stdlib/include/assert.hrl").
1414
-include_lib("rabbitmq_ct_helpers/include/rabbit_assert.hrl").
1515

16+
-compile(nowarn_export_all).
1617
-compile(export_all).
1718

1819
all() ->
1920
[
20-
{group, mnesia_store},
21-
{group, khepri_store},
21+
{group, tests},
2222
{group, khepri_migration}
2323
].
2424

2525
groups() ->
2626
[
27+
<<<<<<< HEAD
2728
{mnesia_store, [], [target_count_policy] ++ all_tests()},
2829
{khepri_store, [], all_tests()},
30+
=======
31+
{tests, [], all_tests()},
32+
>>>>>>> 087d701b6e (speed up policy_SUITE)
2933
{khepri_migration, [], [
3034
from_mnesia_to_khepri
3135
]}
@@ -63,11 +67,7 @@ init_per_suite(Config) ->
6367
end_per_suite(Config) ->
6468
rabbit_ct_helpers:run_teardown_steps(Config).
6569

66-
init_per_group(mnesia_store = Group, Config0) ->
67-
Config = rabbit_ct_helpers:set_config(Config0, [{metadata_store, mnesia}]),
68-
init_per_group_common(Group, Config, 2);
69-
init_per_group(khepri_store = Group, Config0) ->
70-
Config = rabbit_ct_helpers:set_config(Config0, [{metadata_store, khepri}]),
70+
init_per_group(tests = Group, Config) ->
7171
init_per_group_common(Group, Config, 2);
7272
init_per_group(khepri_migration = Group, Config0) ->
7373
Config = rabbit_ct_helpers:set_config(Config0, [{metadata_store, mnesia}]),

0 commit comments

Comments
 (0)