forked from bearmug/erlang-pure-migrations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
28 lines (28 loc) · 1.33 KB
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{profiles, [
{test, [
{deps, [
{epgsql, {git, "https://github.com/epgsql/epgsql", {tag, "4.2.1"}}},
{spgsql, {git, "https://github.com/semiocast/pgsql", {tag, "v26.0.2"}}},
{p1pgsql, {git, "https://github.com/processone/p1_pgsql", {tag, "1.1.6"}}},
{mysqlotp, {git, "https://github.com/mysql-otp/mysql-otp", {tag, "1.4.0"}}},
{coveralls, {git, "https://github.com/markusn/coveralls-erl", {tag, "v2.0.1"}}}
]},
{eunit_opts , [verbose]},
{ct_opts, [ {
sys_config, ["test/config/test.config"]}]},
{cover_enabled , true},
{cover_print_enabled , true},
{cover_export_enabled , true},
{coveralls_coverdata , "_build/test/cover/ct.coverdata"},
{coveralls_service_name , "travis-ci"},
{plugins , [coveralls]}
]},
{lint, [
{plugins, [rebar3_lint]}
]}
]}.
{plugins, [rebar3_fmt, rebar3_hex]}.
{dialyzer,
[
{plt_location, "_build/plt"}
]}.