@@ -144,26 +144,11 @@ skip_or_run_inbox_tests(TestCases) ->
144
144
end .
145
145
146
146
maybe_run_in_parallel (Gs ) ->
147
- % % These could be parallel but it seems like mssql CI can't handle the load
148
- case distributed_helper :rpc (
149
- distributed_helper :mim (), mongoose_rdbms , db_engine , [domain_helper :host_type ()]) of
150
- odbc -> Gs ;
151
- _ -> insert_parallels (Gs )
152
- end .
147
+ NewParams = distributed_helper :maybe_parallel_group (),
148
+ ct_helper :add_params_to_list (Gs , NewParams , non_parallel_groups ()).
153
149
154
- insert_parallels (Gs ) ->
155
- Fun = fun ({muclight_config , Conf , Tests }) ->
156
- {muclight_config , Conf , Tests };
157
- ({bin , Conf , Tests }) ->
158
- {bin , Conf , Tests };
159
- ({regular , Conf , Tests }) ->
160
- {regular , Conf , Tests };
161
- ({async_pools , Conf , Tests }) ->
162
- {async_pools , Conf , Tests };
163
- ({Group , Conf , Tests }) ->
164
- {Group , [parallel | Conf ], Tests }
165
- end ,
166
- lists :map (Fun , Gs ).
150
+ non_parallel_groups () ->
151
+ [muclight_config , bin , regular , async_pools ].
167
152
168
153
inbox_modules (Backend ) ->
169
154
[
0 commit comments