Skip to content

Commit 68d4b90

Browse files
committed
cluster_SUITE: Execute tests in parallel
[Why] Two goals: * Discover concurrency-related issues * Run tests faster
1 parent cb44c78 commit 68d4b90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/cluster_SUITE.erl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ all() ->
6262

6363
groups() ->
6464
[
65-
{all, [],
65+
{all, [parallel],
6666
[
6767
{single_node, [],
6868
[
@@ -71,7 +71,7 @@ groups() ->
7171
can_use_default_store_on_single_node,
7272
can_start_store_in_specified_data_dir_on_single_node
7373
]},
74-
{parallel, [],
74+
{parallel, [parallel],
7575
[
7676
can_start_a_single_node,
7777
can_restart_a_single_node_with_ra_server_config,
@@ -84,7 +84,7 @@ groups() ->
8484
can_set_snapshot_interval
8585
]}
8686
]},
87-
{cluster, [],
87+
{cluster, [parallel],
8888
[
8989
can_start_a_three_node_cluster,
9090
can_join_several_times_a_three_node_cluster,

0 commit comments

Comments
 (0)