-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
35 lines (28 loc) · 784 Bytes
/
rebar.config
File metadata and controls
35 lines (28 loc) · 784 Bytes
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
{erl_opts, [
fail_on_warning,
debug_info]}.
{clean_files, [
"erl_crash.dump",
"*.eunit", "ebin/*", ".eunit/",
"doc/*.html", "doc/*.edoc-info", "doc/*.css", "doc/*.png", "doc/edoc-info",
"test/ct/logs/*", "test/ct/*.beam", "test/ct/helpers/*.beam",
"deps/*"
]}.
{eunit_opts, [
% verbose,
{report, {eunit_surefire, [{dir, "."}]}},
{dir, "test/eunit"}
]}.
{eunit_compile_opts, [
export_all
]}.
{cover_enabled, true}.
{deps, [
{deck36_common, "1.*", {git, "https://github.com/DECK36/deck36_common.git", {branch, "1.x"}}},
{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git"}}
]}.
{deps_dir, "deps"}.
{ct_dir, "test/ct"}.
{ct_log_dir, "test/ct/logs"}.
{ct_extra_params, "-args_file test/ct/config/node.args -pa test/ct"}.
{ct_use_short_names, true}.