forked from eproxus/meck
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtest.config
More file actions
21 lines (18 loc) · 942 Bytes
/
test.config
File metadata and controls
21 lines (18 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%% Dependencies ===============================================================
{deps,
[{hamcrest, ".*", {git, "https://github.com/hyperthunk/hamcrest-erlang.git",
{branch, "master"}}}]}.
%% Compiler Options ===========================================================
{erl_opts, [
%% Erlang releases after 17 don't put R in front of their name, and also require dict() to be written like dict:dict()
{platform_define, "^R", non_namespaced_types}, % used by meck
{platform_define, "^[0-9]+", namespaced_types}, % used by hamcrest
{platform_define, "^R(?!16B03)", cover_empty_compile_opts},
warnings_as_errors,
debug_info
]}.
%% Eunit Options ==============================================================
{cover_enabled, true}.
{cover_print_enabled, true}.
%% Misc =======================================================================
{clean_files, [".eunit", "ebin/*.beam", "test/*.beam"]}.