forked from OpenRiak/leveled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
36 lines (29 loc) · 1.07 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
{minimum_otp_vsn, "22.3"}.
{erl_opts, [warnings_as_errors]}.
{xref_checks,
[undefined_function_calls,undefined_functions,
locals_not_used,
deprecated_function_calls, deprecated_functions]}.
{cover_excl_mods,
[testutil,
appdefined_SUITE, basic_SUITE, iterator_SUITE,
perf_SUITE, recovery_SUITE, riak_SUITE, tictac_SUITE]}.
{eunit_opts, [verbose]}.
{profiles,
[{eqc, [{deps, [meck, fqc]},
{erl_opts, [debug_info, {d, 'EQC'}]},
{extra_src_dirs, ["test/property", "test/end_to_end"]},
{shell, [{apps, [lz4]}]},
{plugins, [rebar_eqc]}
]},
{test, [{extra_src_dirs, ["test/end_to_end", "test/property"]}
]},
{perf_full, [{erl_opts, [{d, performance, riak_fullperf}]}]},
{perf_mini, [{erl_opts, [{d, performance, riak_miniperf}]}]},
{perf_prof, [{erl_opts, [{d, performance, riak_profileperf}]}]}
]}.
{deps, [
{lz4, ".*", {git, "https://github.com/OpenRiak/erlang-lz4", {branch, "openriak-3.2"}}},
{zstd, ".*", {git, "https://github.com/OpenRiak/zstd-erlang", {branch, "openriak-3.2"}}}
]}.
{ct_opts, [{dir, ["test/end_to_end"]}]}.