|
13 | 13 | -include_lib("stdlib/include/assert.hrl"). |
14 | 14 | -include_lib("rabbitmq_ct_helpers/include/rabbit_assert.hrl"). |
15 | 15 |
|
| 16 | +-compile(nowarn_export_all). |
16 | 17 | -compile(export_all). |
17 | 18 |
|
18 | 19 | all() -> |
19 | 20 | [ |
20 | | - {group, mnesia_store}, |
21 | | - {group, khepri_store}, |
| 21 | + {group, tests}, |
22 | 22 | {group, khepri_migration} |
23 | 23 | ]. |
24 | 24 |
|
25 | 25 | groups() -> |
26 | 26 | [ |
| 27 | +<<<<<<< HEAD |
27 | 28 | {mnesia_store, [], [target_count_policy] ++ all_tests()}, |
28 | 29 | {khepri_store, [], all_tests()}, |
| 30 | +======= |
| 31 | + {tests, [], all_tests()}, |
| 32 | +>>>>>>> 087d701b6e (speed up policy_SUITE) |
29 | 33 | {khepri_migration, [], [ |
30 | 34 | from_mnesia_to_khepri |
31 | 35 | ]} |
@@ -63,11 +67,7 @@ init_per_suite(Config) -> |
63 | 67 | end_per_suite(Config) -> |
64 | 68 | rabbit_ct_helpers:run_teardown_steps(Config). |
65 | 69 |
|
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) -> |
71 | 71 | init_per_group_common(Group, Config, 2); |
72 | 72 | init_per_group(khepri_migration = Group, Config0) -> |
73 | 73 | Config = rabbit_ct_helpers:set_config(Config0, [{metadata_store, mnesia}]), |
|
0 commit comments