forked from alertlogic/erlcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
29 lines (27 loc) · 1007 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
{erl_opts,
[debug_info,
%% warnings_as_errors, % disabled due to disabled function
strict_validation,
warn_bif_clash,
warn_deprecated_function,
warn_export_all,
warn_export_vars,
warn_exported_vars,
warn_obsolete_guard,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_unused_record,
warn_unused_vars]}.
{deps, [{covertool, "", {git, "https://github.com/idubrov/covertool.git", "master"}},
{meck, ".*", {git, "https://github.com/eproxus/meck.git", "master"}},
{jsx, ".*", {git, "git://github.com/talentdeficit/jsx.git", "master"}},
{lhttpc, ".*", {git, "git://github.com/talko/lhttpc", "master"}}
]}.
{plugins, [rebar_covertool]}.
{cover_enabled, true}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{ct_extra_params, "-ct_hooks cth_surefire"}.
{cover_export_enabled, true}.
{covertool_eunit, {".eunit/cover.coverdata", "eunit.coverage.xml"}}.