Current section
Files
Jump to
Current section
Files
rebar.config
%-*-Erlang-*-
{erl_opts, [debug_info]}.
{deps, []}.
{opts, [{d, debug}]}.
{minimum_otp_vsn, "19"}.
{profiles, [
{test, [
{erl_opts, [nowarn_export_all]},
{plugins, [{coveralls, {git, "https://github.com/RoadRunnr/coveralls-erl.git", {branch, "feature/git-info"}}}]}
]}
]}.
%% xref checks to run
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
deprecated_funcqtions]}.
{plugins, [rebar3_hex]}.
%% == Cover ==
%% Whether to enable coverage reporting. Default is `false'
{cover_enabled, true}.
%% Whether to export coverage report to file. Default is `false'
{cover_export_enabled, true}.
%% == covervalls.io ==
{do_coveralls_after_ct, false}.
{do_coveralls_after_eunit, false}.
{coveralls_coverdata, "_build/test/cover/ct.coverdata"}.
{coveralls_service_name, "github"}.
{coveralls_parallel, true}.