aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-05-09 19:42:13 +0200
committerNils Adermann <naderman@naderman.de>2013-05-09 19:42:13 +0200
commit3327739290fe9d953a813fe8649605cee617d06b (patch)
tree28d4b6da5a7843307df5802a66c98a67b9adb1d8 /build
parentdbb4a87b7945a35d9069283eed049a3a42f40bdf (diff)
parent3fb536d7b7a51409a87192b2309ccf50ab11564f (diff)
downloadforums-3327739290fe9d953a813fe8649605cee617d06b.tar
forums-3327739290fe9d953a813fe8649605cee617d06b.tar.gz
forums-3327739290fe9d953a813fe8649605cee617d06b.tar.bz2
forums-3327739290fe9d953a813fe8649605cee617d06b.tar.xz
forums-3327739290fe9d953a813fe8649605cee617d06b.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/11513] Update RUNNING_TESTS.txt to no longer refer to PEAR. [ticket/11513] Update all CLI calls to phpunit to use vendor/bin. [ticket/11513] Use PHPUnit from composer in .travis.yml. [ticket/11513] Update (all) composer dependencies. [ticket/11513] Add PHPUnit 3.7 and DbUnit 1.2 as a composer dev dependency. Conflicts: .travis.yml phpBB/composer.lock
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 8ce61e9374..02518ac441 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