Skip to content

Commit ccd3d7e

Browse files
committed
Remove covertool from repo
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.
1 parent e6077f7 commit ccd3d7e

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

rebar.config

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,8 @@
2626
{test, [
2727
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}
2828
,{cover_enabled, true}
29-
,{plugins, [rebar_covertool]}
30-
,{covertool_eunit, ".eunit/eunit.coverage.xml"}
3129
,{deps, [
32-
{proper, {git, "https://github.com/manopapad/proper.git", {ref, "v1.2"}}},
33-
{covertool, {git, "https://github.com/idubrov/covertool.git", {branch, "master"}}}
30+
{proper, {git, "https://github.com/manopapad/proper.git", {ref, "v1.2"}}}
3431
]}
3532
]}
3633
]}.

rebar.config.script

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ case erlang:function_exported(rebar3, main, 1) of
1212

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

1918
ConvertDep =

0 commit comments

Comments
 (0)