-
Notifications
You must be signed in to change notification settings - Fork 17
/
rebar.config
54 lines (46 loc) · 1.83 KB
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
%%-*-Erlang-*-
{erl_opts, [debug_info]}.
{edoc_opts, [{preprocess, true}]}.
{deps, [
{cut, "1.0.3"},
{ppplib, "1.0.0"},
{parse_trans, {git, "https://github.com/uwiger/parse_trans.git", {branch, "master"}}}
]}.
{minimum_otp_vsn, "24.3"}.
{plugins, [rebar3_hex, rebar3_fmt]}.
{profiles, [
{test,
[{deps,
[{proper, {git, "https://github.com/proper-testing/proper.git",
{branch, "master"}}}]},
{plugins, [{coveralls, {git, "https://github.com/RoadRunnr/coveralls-erl.git", {branch, "feature/git-info"}}}]},
{ct_opts, [{ct_hooks, [cth_surefire]}]}
]},
{pcap,
[{deps,
[{flower, {git, "git://github.com/travelping/flower.git",
{branch, "master"}}},
{gen_socket, {git, "git://github.com/travelping/gen_socket.git",
{branch, "master"}}},
{pcapng, {git, "git://github.com/travelping/pcapng.git",
{branch, "master"}}},
{proper, {git, "https://github.com/proper-testing/proper.git",
{branch, "master"}}}
]}
]}
]}.
%% xref checks to run
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, deprecated_function_calls,
deprecated_functions]}.
%% == 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}.