aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-05-09 10:30:20 -0700
committerNils Adermann <naderman@naderman.de>2013-05-09 10:30:20 -0700
commit3fb536d7b7a51409a87192b2309ccf50ab11564f (patch)
tree5984921bf10f9424e2c2f8d12d753f4960ff86b5 /build
parent4e3c5aefa83cac5e128f892915b222d9bd41ee72 (diff)
parentc31123e8a4f3350cd33be80a8178a0c94617d9c7 (diff)
downloadforums-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.xml6
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