forked from eproxus/meck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.config
20 lines (17 loc) · 856 Bytes
/
test.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%% 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, "^[0-9]+", namespaced_types},
{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"]}.