Skip to content

Commit

Permalink
fix(rebar.config): change to use project_plugins
Browse files Browse the repository at this point in the history
so a warpping project will not have to download this dependency
  • Loading branch information
zmstone committed Oct 14, 2023
1 parent d4f3bd3 commit 9179647
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@


%% Coveralls
{plugins , [{coveralls, {git, "https://github.com/qzhuyan/coveralls-erl", {branch, "qzhuyan"}}}]}.
{cover_enabled , true}.
{project_plugins, [{coveralls, {git, "https://github.com/qzhuyan/coveralls-erl", {branch, "qzhuyan"}}}]}.
{cover_enabled, true}.
{cover_excl_mods, [qt, qt_ssl, rev, user_default]}.
{cover_export_enabled , true}.
{coveralls_coverdata , "_build/test/cover/*.coverdata"}. % or a string with wildcards or a list of files
{coveralls_service_name , "github"}.
{cover_export_enabled, true}.
{coveralls_coverdata, "_build/test/cover/*.coverdata"}. % or a string with wildcards or a list of files
{coveralls_service_name, "github"}.
{coveralls_parallel, true}.

0 comments on commit 9179647

Please sign in to comment.