From a768ad738ae4dc15ed1bb58d15aac2a9dff51ead Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Thu, 8 Dec 2011 17:47:14 -0800 Subject: [PATCH] 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. --- teuthology/coverage.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/teuthology/coverage.py b/teuthology/coverage.py index a2d9999e87347..eb9df9d0ceddf 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 -- 2.39.5