forked from ptuckey/meck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.config
20 lines (17 loc) · 887 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 ===========================================================
% FIXME: Add warnings_as_errors once Hamcrest is fixed
{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_dicts},
{platform_define, "^R(?!16B03)", cover_empty_compile_opts},
debug_info
]}.
%% Eunit Options ==============================================================
{cover_enabled, true}.
{cover_print_enabled, true}.
%% Misc =======================================================================
{clean_files, [".eunit", "ebin/*.beam", "test/*.beam"]}.