diff options
| author | Nils Adermann <naderman@naderman.de> | 2013-05-09 10:30:20 -0700 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2013-05-09 10:30:20 -0700 |
| commit | 3fb536d7b7a51409a87192b2309ccf50ab11564f (patch) | |
| tree | 5984921bf10f9424e2c2f8d12d753f4960ff86b5 /build | |
| parent | 4e3c5aefa83cac5e128f892915b222d9bd41ee72 (diff) | |
| parent | c31123e8a4f3350cd33be80a8178a0c94617d9c7 (diff) | |
| download | forums-3fb536d7b7a51409a87192b2309ccf50ab11564f.tar forums-3fb536d7b7a51409a87192b2309ccf50ab11564f.tar.gz forums-3fb536d7b7a51409a87192b2309ccf50ab11564f.tar.bz2 forums-3fb536d7b7a51409a87192b2309ccf50ab11564f.tar.xz forums-3fb536d7b7a51409a87192b2309ccf50ab11564f.zip | |
Merge pull request #1387 from bantu/ticket/11513
[ticket/11513] Install PHPUnit via Composer
Diffstat (limited to 'build')
| -rw-r--r-- | build/build.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/build.xml b/build/build.xml index f9574a3d4d..75affb0f2d 100644 --- a/build/build.xml +++ b/build/build.xml @@ -56,7 +56,8 @@ <target name="test" depends="clean,prepare,composer"> <exec dir="." - command="phpunit --log-junit build/logs/phpunit.xml + command="phpBB/vendor/bin/phpunit + --log-junit build/logs/phpunit.xml --coverage-clover build/logs/clover.xml --coverage-html build/coverage" passthru="true" /> @@ -64,7 +65,8 @@ <target name="test-slow" depends="clean,prepare,composer"> <exec dir="." - command="phpunit --log-junit build/logs/phpunit.xml + command="phpBB/vendor/bin/phpunit + --log-junit build/logs/phpunit.xml --configuration phpunit.xml.all --group slow --coverage-clover build/logs/clover-slow.xml |
