Skip to content

Commit

Permalink
avoid parallel execution of the tests with host_types_group
Browse files Browse the repository at this point in the history
it causes execution of meck:unload in parallel which results in spontaneous failuers.
tested with:
   ./rebar3 ct --suite config_parser_SUITE
  • Loading branch information
DenysGonchar committed Apr 6, 2021
1 parent 7d46418 commit 7e97adb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/config_parser_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ all() ->
{group, shaper_acl_access},
{group, s2s},
{group, modules},
{group, services}].
{group, services},
{group, host_types_group}].

groups() ->
[{file, [parallel], [sample_pgsql,
miscellaneous,
s2s,
modules,
outgoing_pools,
{group, host_types_group}]},
outgoing_pools]},
{host_types_group, [], [host_types_file,
host_types_missing_auth_methods_and_modules,
host_types_unsupported_modules,
Expand Down

0 comments on commit 7e97adb

Please sign in to comment.