-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
56 lines (42 loc) · 1.39 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
55
56
%% == Erlang Compiler ==
{minimum_otp_vsn, "21.0"}.
{erl_opts, [debug_info]}.
%% == Plugins ==
{project_plugins , [coveralls]}.
%% == Deps ==
{deps, [
{redbug , ".*", {git, "https://github.com/massemanet/redbug", {tag, "1.2.1"}}},
{erlcloud , ".*", {git, "https://github.com/erlcloud/erlcloud", {branch, "master"}}},
{jsone , ".*", {git, "https://github.com/sile/jsone", {branch, "master"}}}
]}.
{shell, [
% {config, "config/sys.config"},
{apps, [miniclip]}
]}.
{relx, [{release,{miniclip, "1.0.0"}, []},
{dev_mode, false},
{vm_args_src, "config/vm.args.src"}
]}.
%% == Profiles info ==
{profiles, [{test, [{deps, [ {meck, "0.8.13"}
]
}]
}]
}.
%% == Coveralls info ==
{coveralls_coverdata , "_build/test/cover/ct.coverdata"}.
{coveralls_service_name , "travis-ci"}.
%% == Common Test ==
%% {erl_opts, [...]}, but for CT runs
{ct_compile_opts, []}.
%% {erl_first_files, ...} but for CT runs
{ct_first_files, []}.
%% Keep only the logs of the last 5 runs
{ct_opts, [{keep_logs, 5}, {verbose, true}]}.
%% Whether to enable coverage reporting where commands support cover.
{cover_enabled, true}.
{cover_export_enabled, true}.
%% Modules to exclude from cover
{cover_excl_mods, [miniclip_dbg, miniclip_server_SUITE]}.
%% Options to pass to cover provider
{cover_opts, [verbose]}.