Skip to content

Commit

Permalink
Remove covertool from repo
Browse files Browse the repository at this point in the history
This plugin isn’t actually used by any existing process, and really only has value in the context of Jenkins/some other Cobertura processing tool, which this isn’t integrated to at all. So, just remove it.
  • Loading branch information
nalundgaard committed Jul 20, 2018
1 parent e6077f7 commit ccd3d7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
5 changes: 1 addition & 4 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,8 @@
{test, [
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}
,{cover_enabled, true}
,{plugins, [rebar_covertool]}
,{covertool_eunit, ".eunit/eunit.coverage.xml"}
,{deps, [
{proper, {git, "https://github.com/manopapad/proper.git", {ref, "v1.2"}}},
{covertool, {git, "https://github.com/idubrov/covertool.git", {branch, "master"}}}
{proper, {git, "https://github.com/manopapad/proper.git", {ref, "v1.2"}}}
]}
]}
]}.
3 changes: 1 addition & 2 deletions rebar.config.script
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ case erlang:function_exported(rebar3, main, 1) of

%% whenever adding a new Hex package dependency, this fun should be
%% updated
HexToRepo = fun(proper) -> "https://github.com/manopapad/proper.git";
(covertool) -> "https://github.com/idubrov/covertool.git"
HexToRepo = fun(proper) -> "https://github.com/manopapad/proper.git"
end,

ConvertDep =
Expand Down

0 comments on commit ccd3d7e

Please sign in to comment.