charpi / hudson_erlcover_plugin
- Source
- Commits
- Network (1)
- Issues (0)
- Graphs
-
Tree:
a13bd92
commit a13bd92976fb3743c35cf4341928281774e01de2
tree e82a4bd47fcd91a06e5951956287ea86f7da7c0f
parent 01841d0488f2cb2e66c60e7f2e05b2fea27b32e3
tree e82a4bd47fcd91a06e5951956287ea86f7da7c0f
parent 01841d0488f2cb2e66c60e7f2e05b2fea27b32e3
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>

