diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-05-09 18:58:31 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-05-09 19:21:40 +0200 |
commit | f2f97dd5e06be645f830e0467737d9f23544d631 (patch) | |
tree | d3806ee36b10d651967d8d0834bf86674736aa35 /build | |
parent | b5b1e88915ae8ae220c62b0d27f514069c3c0249 (diff) | |
download | forums-f2f97dd5e06be645f830e0467737d9f23544d631.tar forums-f2f97dd5e06be645f830e0467737d9f23544d631.tar.gz forums-f2f97dd5e06be645f830e0467737d9f23544d631.tar.bz2 forums-f2f97dd5e06be645f830e0467737d9f23544d631.tar.xz forums-f2f97dd5e06be645f830e0467737d9f23544d631.zip |
[ticket/11513] Update all CLI calls to phpunit to use vendor/bin.
PHPBB3-11513
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 |