figleaf output: include a stats.out for parsing by a munin plugin

This commit is contained in:
Brian Warner 2007-04-06 17:41:01 -07:00
parent 6a6631a92e
commit dd673370ec

View File

@ -144,6 +144,13 @@ def report_as_html(coverage, directory, exclude_patterns=[], root=None):
pcnt_75 = [ x for x in pcnts if x >= 75 ]
pcnt_50 = [ x for x in pcnts if x >= 50 ]
stats_fp = open('%s/stats.out' % (directory,), 'w')
stats_fp.write("total files: %d\n" % len(pcnts))
stats_fp.write("total source lines: %d\n" % summary_lines)
stats_fp.write("total covered lines: %d\n" % summary_cover)
stats_fp.write("total coverage percentage: %.1f\n" % summary_pcnt)
stats_fp.close()
## index.html
index_fp = open('%s/index.html' % (directory,), 'w')
# summary info