rebar.config 741 B

12345678910111213141516171819202122232425
  1. {deps,
  2. []}.
  3. {edoc_opts, [{preprocess, true}]}.
  4. {erl_opts, [warn_unused_vars,
  5. warn_shadow_vars,
  6. warn_unused_import,
  7. warn_obsolete_guard,
  8. debug_info,
  9. {parse_transform}]}.
  10. {xref_checks, [undefined_function_calls, undefined_functions,
  11. locals_not_used, deprecated_function_calls,
  12. warnings_as_errors, deprecated_functions]}.
  13. {cover_enabled, true}.
  14. {cover_opts, [verbose]}.
  15. {cover_export_enabled, true}.
  16. {profiles,
  17. [{test, [
  18. {deps, [ {emqx_ct_helper, {git, "https://github.com/emqx/emqx-ct-helpers", {tag, "v1.1.4"}}}
  19. , {cuttlefish, {git, "https://github.com/emqx/cuttlefish", {tag, "v3.0.0"}}}
  20. ]}
  21. ]}
  22. ]}.