forked from erleans/erleans
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrebar.config
More file actions
42 lines (33 loc) · 1.19 KB
/
rebar.config
File metadata and controls
42 lines (33 loc) · 1.19 KB
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
40
41
%% -*- erlang -*-
{erl_opts,
[debug_info,
warn_untyped_record]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_export_enabled, true}.
{covertool, [{coverdata_files, ["ct.coverdata"]}]}.
{deps, [lasp,
lasp_pg,
partisan,
gproc,
erlware_commons,
types,
sbroker,
{opentelemetry_api, {git, "https://github.com/open-telemetry/opentelemetry-erlang-api.git", {branch, "master"}}},
{uuid, {pkg, uuid_erl}}]}.
{profiles, [{db, [{deps, []},
{ct_opts, [{sys_config, "test/db_sys.config"}]}]},
{test, [{deps, []},
{erl_opts, [nowarn_export_all]},
{dist_node, [{name, 'ct@127.0.0.1'}]}]}]}.
{ct_opts, [{sys_config, "test/sys.config"}]}.
{project_plugins,
[rebar_alias,
{rebar_covertool, {git, "https://github.com/tsloughter/covertool.git", {branch, "master"}}}]}.
{alias, [{test, [ct]},
{check, [ct, xref, dialyzer, cover]}]}.
{dist_node, [{name, 'erleans@127.0.0.1'}]}.
{shell, [{apps, [erleans]},
{config, "config/sys.config"}]}.
{xref_checks, [undefined_function_calls, undefined_functions,
deprecated_function_calls, deprecated_functions]}.