-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
37 lines (30 loc) · 961 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
{deps_error_on_conflict, true}.
{erl_opts, [debug_info]}.
{eunit_opts, [{skip_deps, true}, verbose]}.
{cover_enabled, true}.
{cover_excl_mods, [dpi_transform]}.
{cover_export_enabled, true}.
{cover_opts, [verbose]}.
{coveralls_coverdata, [
"_build/test/cover/ct.coverdata",
"_build/test/cover/eunit.coverdata"
]}.
{coveralls_service_name, "travis-ci"}.
{ct_opts, [{cover}, {verbose}]}.
{pre_hooks,
[{"(win32)", compile, "nmake -F c_src/Makefile.win32"},
{"(linux|darwin)", compile, "make -f c_src/Makefile"}
]}.
{post_hooks,
[{"(win32)", clean, "nmake -F c_src/Makefile.win32 clean"},
{"(linux|darwin)", clean, "make -f c_src/Makefile clean"}
]}.
{profiles, [
{test, [
{pre_hooks,
[{"(win32)", compile, "nmake -F c_src/Makefile.win32"}
,{"(linux|darwin)", compile, "make -f c_src/Makefile test"}]
},
{dist_node, [{setcookie, 'testcookie'}, {name, '[email protected]'}]}
]}
]}.