mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Disable cover analyzys on R17 as this causes problems with elixir tests
This commit is contained in:
parent
8e883a76e3
commit
db240413ab
@ -117,7 +117,7 @@
|
|||||||
|
|
||||||
{eunit_compile_opts, [{i, "tools"}]}.
|
{eunit_compile_opts, [{i, "tools"}]}.
|
||||||
|
|
||||||
{cover_enabled, true}.
|
{if_version_above, "17", {cover_enabled, true}}.
|
||||||
{cover_export_enabled, true}.
|
{cover_export_enabled, true}.
|
||||||
|
|
||||||
{post_hook_configure, [{"fast_tls", []},
|
{post_hook_configure, [{"fast_tls", []},
|
||||||
|
@ -30,6 +30,20 @@ Cfg = case file:consult(filename:join(filename:dirname(SCRIPT), "vars.config"))
|
|||||||
|
|
||||||
ProcessVars = fun(_F, [], Acc) ->
|
ProcessVars = fun(_F, [], Acc) ->
|
||||||
lists:reverse(Acc);
|
lists:reverse(Acc);
|
||||||
|
(F, [{Type, Ver, Value} | Tail], Acc) when
|
||||||
|
Type == if_version_above orelse
|
||||||
|
Type == if_version_below ->
|
||||||
|
SysVer = erlang:system_info(otp_release),
|
||||||
|
Include = if Type == if_version_above ->
|
||||||
|
SysVer > Ver;
|
||||||
|
true ->
|
||||||
|
SysVer < Ver
|
||||||
|
end,
|
||||||
|
if Include ->
|
||||||
|
F(F, Tail, [Value | Acc]);
|
||||||
|
true ->
|
||||||
|
F(F, Tail, Acc)
|
||||||
|
end;
|
||||||
(F, [{Type, Var, Value} | Tail], Acc) when
|
(F, [{Type, Var, Value} | Tail], Acc) when
|
||||||
Type == if_var_true orelse
|
Type == if_var_true orelse
|
||||||
Type == if_var_false ->
|
Type == if_var_false ->
|
||||||
|
Loading…
Reference in New Issue
Block a user