This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
README
= Objective =
This hudson plugin provides a way to report Erlang code coverage results.
Those results are read from an XML file which got this structure:
<?xml version="1.0"?>
<cover>
<module application="first_app" name="first_module">
<lines called="0" uncalled="44"/>
</module>
<module application="first_app" name="second_module">
<lines called="1" uncalled="0"/>
</module>
<module application="second_app" name="other_module">
<lines called="0" uncalled="3"/>
</module>
</cover>








