charpi / hudson_erlcover_plugin

Hudson plugin to report erlang code coverage results.

This URL has Read+Write access

charpi (author)
Sun Jun 14 23:03:05 -0700 2009
commit  a13bd92976fb3743c35cf4341928281774e01de2
tree    e82a4bd47fcd91a06e5951956287ea86f7da7c0f
parent  01841d0488f2cb2e66c60e7f2e05b2fea27b32e3
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>