riak_test/rebar.config
2016-10-13 17:07:54 -06:00

33 lines
1.8 KiB
Erlang

{require_otp_vsn, "R13B04|R14|R15|R16"}.
{cover_enabled, true}.
{edoc_opts, [{preprocess, true}]}.
%%{edoc_opts, [{doclet, edown_doclet}, {pretty_printer, erl_pp}]}.
%%{edoc_opts, [{doclet, my_layout}, {pretty_printer, erl_pp}]}.
%%{edoc_opts, [{layout, my_layout}, {file_suffix, ".xml"}, {pretty_printer, erl_pp}]}.
{erl_opts, [{src_dirs, [src, intercepts, perf]},
warnings_as_errors, {parse_transform, lager_transform}]}.
{erl_first_files, ["src/rt_intercept_pt.erl"]}.
{eunit_opts, [verbose]}.
{deps, [
{lager, ".*", {git, "https://github.com/basho/lager", {tag, "3.2.4"}}},
{getopt, ".*", {git, "https://github.com/basho/getopt.git", {tag, "v0.8.2"}}},
{meck, ".*", {git, "https://github.com/basho/meck.git", {tag, "0.8.2"}}},
{mapred_verify, ".*", {git, "https://github.com/basho/mapred_verify", {branch, "master"}}},
{riakc, ".*", {git, "https://github.com/basho/riak-erlang-client", {branch, "develop"}}},
{riakhttpc, ".*", {git, "https://github.com/basho/riak-erlang-http-client", {branch, "develop"}}},
{kvc, ".*", {git, "https://github.com/basho/kvc.git", {tag, "v1.5.0"}}},
{druuid, ".*", {git, "https://github.com/basho/druuid.git", {tag, "0.2"}}},
{tdiff, ".*", {git, "https://github.com/basho/tdiff", {tag, "0.1"}}}
]}.
{escript_incl_apps, [goldrush, lager, getopt, riakhttpc, riakc, ibrowse, mochiweb, kvc, tdiff]}.
{escript_emu_args, "%%! -escript main riak_test_escript +K true +P 10000 -env ERL_MAX_PORTS 10000\n"}.
{plugin_dir, "src"}.
{plugins, [rebar_riak_test_plugin]}.
{riak_test, [
{test_paths, ["tests", "perf"]},
{test_output, "ebin"}
]}.