From ccd3d7edd193d4a162fcd9cf81d6d13453bcf15d Mon Sep 17 00:00:00 2001 From: Nicholas Lundgaard Date: Fri, 20 Jul 2018 11:09:57 -0500 Subject: [PATCH] Remove covertool from repo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- rebar.config | 5 +---- rebar.config.script | 3 +-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/rebar.config b/rebar.config index 72e5188..26c3d9d 100644 --- a/rebar.config +++ b/rebar.config @@ -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"}}} ]} ]} ]}. diff --git a/rebar.config.script b/rebar.config.script index f185f32..d84e6a5 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -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 =