-
Notifications
You must be signed in to change notification settings - Fork 33
/
rebar.config
38 lines (32 loc) · 928 Bytes
/
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
{ct_opts, [{ct_hooks, [cth_readable_failonly, cth_readable_shell]}]}.
{edoc_opts, [{sort_functions, false},
{pretty_printer, erl_pp},
{preprocess, true}
]}.
{cover_excl_mods, [test_module]}.
{shell, [{apps, [sync, xprof]}]}.
{profiles,
[{test,
[{deps, [ {meck, "0.8.12"} ]},
{plugins, [ {coveralls, "1.3.0"} ]}
]},
{test_jiffy,
%% jiffy 1.1.1 rebar.config.script uses string:split added in OTP 20
[{deps, [ {jiffy, "1.1.0"} ]}
]},
{test_jsx,
[{deps, [ {jsx, "3.1.0"} ]}
]},
{test_thoas,
[{deps, [ {thoas, "0.4.0"} ]}
]},
{dev,
[{deps, [ {sync, "0.1.3"} ]}
]},
{publish,
[{plugins, [ {rebar3_hex, {git, "https://github.com/gomoripeti/rebar3_hex.git", {tag, "deps-3"}}} ]}
]}
]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{coveralls_coverdata, [ "_build/test/cover/eunit.coverdata", "_build/test/cover/ct.coverdata" ]}.