public
Description: Hudson plugin to report erlang code coverage results.
Homepage: charpi.net
Clone URL: git://github.com/charpi/hudson_erlcover_plugin.git
name age message
file AUTHORS Loading commit data...
file COPYING
file README
file TODO
file pom.xml
directory src/
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>