diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-17 02:23:15 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-17 02:23:15 -0700 |
commit | b70d67d49abd814f6722803f0787f7d9fa908735 (patch) | |
tree | 017a0605a07c061d0ee0d11ec70a741e43c495b0 /autotest.cmd | |
parent | 186c6a56d13206f03bbc80ecac59ff8c6df63840 (diff) | |
parent | 7caf011b9aa8fba455a528dac694a3d5eb697547 (diff) | |
download | nextcloud-server-b70d67d49abd814f6722803f0787f7d9fa908735.tar.gz nextcloud-server-b70d67d49abd814f6722803f0787f7d9fa908735.zip |
Merge pull request #5237 from owncloud/coverage-on-windows-master
PHP Code Coverage on windows master
Diffstat (limited to 'autotest.cmd')
-rw-r--r-- | autotest.cmd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autotest.cmd b/autotest.cmd index a511faef9c6..969e4a1ff38 100644 --- a/autotest.cmd +++ b/autotest.cmd @@ -6,7 +6,6 @@ :: :: @copyright 2012, 2013 Thomas Müller thomas.mueller@tmit.eu :: -@echo off set DATADIR=data-autotest set BASEDIR=%~dp0 @@ -119,7 +118,8 @@ goto:eof md coverage-html-%~1 php -f enable_all.php - php win32-phpunit.php --bootstrap bootstrap.php --configuration phpunit-autotest.xml --log-junit autotest-results-%~1.xml --coverage-clover autotest-clover-%~1.xml --coverage-html coverage-html-%~1 + call phpunit --bootstrap bootstrap.php --configuration phpunit-autotest.xml --log-junit autotest-results-%~1.xml --coverage-clover autotest-clover-%~1.xml --coverage-html coverage-html-%~1 + echo "Done with testing %~1 ..." cd %BASEDIR% goto:eof |