Packages

A simple in-memory filesystem inspirered and intended to be used with Bifrost.

Current section

Files

Jump to
erlmemfs rebar.config
Raw

rebar.config

%% -*- mode: erlang -*-
{erl_opts, [debug_info]}.
{deps, []}.
{shell, [{apps, [erlmemfs]}]}.
{cover_enabled, true}.
{cover_export_enabled,true}.
{project_plugins, [rebar3_proper,
rebar3_hex,
{rebar3_codecov,
{git,
"https://github.com/Raphexion/rebar3_codecov.git",
{branch, "master"}}}]}.
{provider_hooks,
[
{post, [{ct, {codecov, analyze}}]},
{post, [{eunit, {codecov, analyze}}]},
{post, [{proper, {codecov, analyze}}]}
]}.
{profiles,
[{test, [
{erl_opts, [nowarn_export_all]},
{deps, [proper]}
]}
]}.