-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrebar.config
39 lines (31 loc) · 902 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
38
39
%% -*- erlang -*-
{erl_opts, [debug_info, warn_untyped_record]}. %%, warnings_as_errors]}.
{ct_opts, [{sys_config, "test/test.config"}, {update_logger, true}]}.
{ct_compile_opts, [{parse_transform, cth_readable_transform}]}.
{update_logger, true}.
{cover_export_enabled, true}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{covertool, [{coverdata_files,
[
"ct.coverdata"
]}]
}.
{project_plugins,
[
covertool
]}.
{deps, [
{erlang_tc, ".*", {git, "https://github.com/helium/erlang-tc.git", {branch, "main"}}}
]}.
{profiles, [
{test, [
{deps, [
{relcast, ".*", {git, "https://github.com/helium/relcast.git", {branch, "master"}}}
]}
]}
]}.
{dialyzer, [
{warnings, [unknown]},
{plt_apps, all_deps}
]}.