forked from RYTong/erldb-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
51 lines (35 loc) · 1.36 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
{debug, true}.
{drivers, [mysql]}.
%% == Cover ==
%% Whether to enable coverage reporting. Default is `false'
{cover_enabled, true}.
%% Whether to print coverage report to console. Default is `false'
{cover_print_enabled, true}.
%% Whether to export coverage report to file. Default is `false'
{cover_export_enabled, true}.
%% == Common Test ==
%% Override the default "test" directory in which SUITEs are located
%% {ct_dir, "test"}.
%% Override the default "logs" directory in which SUITEs are logged
%% {ct_log_dir, "test/logs"}.
%% Option to pass extra parameters when launching Common Test
%% {ct_extra_params, "-boot start_sasl -s myapp"}.
%% {ct_extra_params, "-pa ebin"}.
%% Option to use short names (i.e., -sname test) when starting ct
{ct_use_short_names, true}.
%% == Pre/Post Command Hooks ==
%% {pre_hooks, [{clean, "./prepare_package_files.sh"},
%% {"linux", compile, "c_src/build_linux.sh"},
%% {compile, "escript generate_headers"},
%% {compile, "escript check_headers"}]}.
{post_hooks, [{clean, "find c_src -name '*.d' -delete"}]}.
%% == xref ==
{xref_warnings, true}.
%% xref checks to run
{xref_checks, [exports_not_used, undefined_function_calls]}.
%%
{edoc_opts, [
{def, {vsn, "2.1.1"}},
{overview, "priv/doc/overview.edoc"},
{stylesheet_file, "priv/doc/markedoc.css"},
{image, "priv/doc/erlang.png"}]}.