From 9f745505cea657cf632f95e30ad41c243e15f293 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 9 Jul 2013 10:43:19 +0200 Subject: [PATCH] Adjust php testrunner so that a html coverage report is generated Remove the --coverage-clover argument as the jenkins plugin cannot properly read it and added --coverage-html instead. refs #4313 --- test/php/runtests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/php/runtests b/test/php/runtests index 680c96179..e63ed897c 100755 --- a/test/php/runtests +++ b/test/php/runtests @@ -108,9 +108,9 @@ def main(): command_options.append('--log-junit') command_options.append(os.path.join(report_directory, 'phpunit_results.xml')) - command_options.append('--coverage-clover') + command_options.append('--coverage-html') command_options.append(os.path.join(report_directory, - 'phpunit_coverage.xml')) + 'php_html_coverage')) if options.include: command_options.append('--filter') command_options.append(options.include)