mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 11:09:33 +00:00
Remove modules that fail coverage from the list
This commit is contained in:
parent
6dfcd8b9f2
commit
5775746758
1 changed files with 4 additions and 4 deletions
|
@ -281,7 +281,7 @@ cover_analyze(Config, Modules, SrcModules) ->
|
|||
end,
|
||||
|
||||
%% Generate coverage info for all the cover-compiled modules
|
||||
Coverage = [cover_analyze_mod(M) || M <- FilteredModules],
|
||||
Coverage = lists:flatten([cover_analyze_mod(M) || M <- FilteredModules]),
|
||||
|
||||
%% Write index of coverage info
|
||||
cover_write_index(lists:sort(Coverage), SrcModules),
|
||||
|
@ -364,12 +364,12 @@ cover_analyze_mod(Module) ->
|
|||
%% test/0 fun, which cover considers a runnable line, but
|
||||
%% eunit:test(TestRepresentation) never calls. Decrement
|
||||
%% NotCovered in this case.
|
||||
align_notcovered_count(Module, Covered, NotCovered,
|
||||
is_eunitized(Module));
|
||||
[align_notcovered_count(Module, Covered, NotCovered,
|
||||
is_eunitized(Module))];
|
||||
{error, Reason} ->
|
||||
?ERROR("Cover analyze failed for ~p: ~p ~p\n",
|
||||
[Module, Reason, code:which(Module)]),
|
||||
{0,0}
|
||||
[]
|
||||
end.
|
||||
|
||||
is_eunitized(Mod) ->
|
||||
|
|
Loading…
Reference in a new issue