legendary-doc-site/apps/core/deps/telemetry_poller/rebar.config

28 lines
891 B
Text
Raw Normal View History

2020-07-04 02:41:01 +00:00
{erl_opts, [{platform_define, "^19", 'OTP19'}, debug_info]}.
{deps, [
{telemetry, "~> 0.4"}
]}.
{profiles, [
{test, [{erl_opts, [nowarn_export_all]},
%% create junit xml for circleci
{ct_opts, [{ct_hooks, [cth_surefire]}]},
{cover_enabled, true},
{cover_opts, [verbose]},
{paths, ["src", "test/support"]},
%% convert to data codecov understands
{plugins, [covertool]},
{covertool, [{coverdata_files, ["ct.coverdata"]}]}
]},
{docs, [{edoc_opts, [{preprocess, true},
{title, "Telemetry Poller v0.5.1"}]}
]}
]}.
{shell, [{apps, [telemetry_poller_app]}]}.
%% take out warnings for unused exported functions
{xref_checks,[undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, deprecated_functions]}.