Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChirayu Chiripal <chirayu.chiripal@gmail.com>2014-08-31 12:20:38 +0400
committerChirayu Chiripal <chirayu.chiripal@gmail.com>2014-08-31 13:23:03 +0400
commit20ab54ac9a21acb875a295906a9ad948050688fc (patch)
treebe8d502d8b9c53703ba59d29c0d0e92ee4980f1d /build.xml
parent4960f208e20ad7fd8b77cef9dcc82772c29def92 (diff)
use phpunit 4.1.x for testing
Signed-off-by: Chirayu Chiripal <chirayu.chiripal@gmail.com>
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index c0e5575768..88b4d260d2 100644
--- a/build.xml
+++ b/build.xml
@@ -24,19 +24,19 @@
</target>
<target name="phpunit" description="Run unit tests using PHPUnit and generates junit.xml and clover.xml">
- <exec executable="phpunit" failonerror="true">
+ <exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
<arg line="--configuration ${env.PHPUNIT_XML} ${env.PHPUNIT_ARGS}"/>
</exec>
</target>
<target name="phpunit-nocoverage" description="Run unit tests using PHPUnit and generates junit.xml">
- <exec executable="phpunit" failonerror="true">
+ <exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
<arg line="--configuration ${env.PHPUNIT_XML_NOCOVERAGE} ${env.PHPUNIT_ARGS}"/>
</exec>
</target>
<target name="phpunit-hhvm" description="Run unit tests using PHPUnit with HHVM specific config">
- <exec executable="phpunit" failonerror="true">
+ <exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
<arg line="--configuration ${env.PHPUNIT_XML_HHVM} ${env.PHPUNIT_ARGS}"/>
</exec>
</target>