public
Description: Hudson plugin to report erlang code coverage results.
Homepage: charpi.net
Clone URL: git://github.com/charpi/hudson_erlcover_plugin.git
charpi (author)
Mon Jun 15 14:54:19 -0700 2009
commit  8c3518637fef88bb50ec8dddb5a4c37dfeb7dd8d
tree    83fd40d739ac10f1ec9675297658bd80f89c2b1b
parent  a13bd92976fb3743c35cf4341928281774e01de2
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>