leveled/rebar.config
Martin Sumner eba21f49fa Make tests compatible with OTP 16
this required a switch to change the sync strategy based on rebar parameter.

However tests could be slow on macbook with OTP16 and sync - so timeouts added in unit tests, and ct tests sync_startegy changed to not sync for OTP16.
2017-09-15 15:10:04 +01:00

11 lines
393 B
Erlang

{erl_opts, [warnings_as_errors,
{platform_define, "18", old_rand},
{platform_define, "17", old_rand},
{platform_define, "^R", old_rand},
{platform_define, "^R", no_sync}]}.
{profiles,
[{eqc, [{deps, [meck, fqc]},
{erl_opts, [debug_info, {parse_transform, lager_transform}, {parse_transform, eqc_cover}]},
{plugins, [rebar_eqc]}]}
]}.