diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-10-18 23:29:27 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-10-18 23:29:49 +0200 |
commit | 7be661872f9fec0c644d9d925de9eba6305c365c (patch) | |
tree | cba7dfd16c379032851d652694f4d7f86e823dd4 /autotest.sh | |
parent | 59c2414439f3824bd35504077f64a0221fefeb05 (diff) | |
download | nextcloud-server-7be661872f9fec0c644d9d925de9eba6305c365c.tar.gz nextcloud-server-7be661872f9fec0c644d9d925de9eba6305c365c.zip |
adding coverage html
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/autotest.sh b/autotest.sh index 54f1eda9932..6530c340303 100755 --- a/autotest.sh +++ b/autotest.sh @@ -87,15 +87,16 @@ function execute_tests { echo "Testing with $1 ..." cd tests #php -f index.php -- xml $1 > autotest-results-$1.xml - phpunit --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml + mkdir coverage-html-$1 + phpunit --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 } # # start test execution # execute_tests "sqlite" -execute_tests 'mysql' -execute_tests 'pgsql' +#execute_tests 'mysql' +#execute_tests 'pgsql' # # NOTES on mysql: |