From: Josh Durgin Date: Fri, 9 Dec 2011 01:47:14 +0000 (-0800) Subject: coverage: don't generate html reports for each test X-Git-Tag: 1.1.0~2708 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a768ad738ae4dc15ed1bb58d15aac2a9dff51ead;p=teuthology.git coverage: don't generate html reports for each test These can always be generated from the lcov files later, right now they just waste space. --- diff --git a/teuthology/coverage.py b/teuthology/coverage.py index a2d9999e87..eb9df9d0ce 100644 --- a/teuthology/coverage.py +++ b/teuthology/coverage.py @@ -180,19 +180,6 @@ Analyze the coverage of a suite of test runs, generating html output with lcov. os.path.join(args.lcov_output, 'total.lcov') ) - if args.html_output: - log.info('generating html for %s', test) - subprocess.check_call( - args=[ - 'genhtml', - '-o', os.path.join(args.html_output, test), - '-t', desc, - '--', - os.path.join(args.lcov_output, - '{name}.lcov'.format(name=test)), - ], - ) - suite = os.path.basename(args.test_dir) coverage = read_coverage(output) test_coverage['total for {suite}'.format(suite=suite)] = coverage