aboutsummaryrefslogtreecommitdiffstats
path: root/rebar.config
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2016-09-21 14:36:50 -0700
committerGitHub <[email protected]>2016-09-21 14:36:50 -0700
commit43056adc09c37ee2f1e9f640f7ee20d7609f2cbf (patch)
treef007e1c621c38a8b7d74c9a3fae313716cf82790 /rebar.config
parent7e55cf5720360a166aba8827406e3e1c59e510fd (diff)
parent44b19a63adaf8eea6ac805b619f5c8897ecd26a1 (diff)
downloadrelx-43056adc09c37ee2f1e9f640f7ee20d7609f2cbf.tar.gz
relx-43056adc09c37ee2f1e9f640f7ee20d7609f2cbf.tar.bz2
relx-43056adc09c37ee2f1e9f640f7ee20d7609f2cbf.zip
Merge pull request #510 from lrascao/feature/enable_coverage_analysis
Add proper configuration enabling coverage analysis
Diffstat (limited to 'rebar.config')
-rw-r--r--rebar.config12
1 files changed, 9 insertions, 3 deletions
diff --git a/rebar.config b/rebar.config
index c3cb40a..bb179ea 100644
--- a/rebar.config
+++ b/rebar.config
@@ -48,6 +48,12 @@
{override, providers, [{erl_opts, [no_debug_info]}]}
]}.
-{ct_opts, [{cover_spec, "cover.spec"},
- {cover_enabled, true},
- {cover_print_enabled, true}]}.
+{ct_opts, [{cover_spec, "cover.spec"}]}.
+
+{cover_enabled, true}.
+{cover_print_enabled, true}.
+{cover_excl_mods, [bin_dtl, erl_script_dtl, extended_bin_dtl,
+ extended_bin_windows_dtl, erl_ini_dtl,
+ bin_windows_dtl, nodetool_dtl,
+ install_upgrade_escript_dtl, nodetool_dtl,
+ sys_config_dtl, vm_args_dtl, relx, rlx_topo]}.