How to integrate PHPUnit in Bamboo?

forest wang April 30, 2013

I was trying to integrate PHPUnit from this article: https://confluence.atlassian.com/display/BAMBOO/PHPUnit

"reference the path to your PHP command-line interpreter" PHPUnit is not an executable...

Do I need ant then?

Can someone give me a step to step instruction?

Thanks

2 answers

0 votes
Shaun Bramley August 3, 2013

I personally use composer to manage all of my dependencies for my projects. This includes phpunit. So despite the fact that bamboo supports phpunit "out of the box" I use the following within my build.xml

<target name="phpunit">
<exec executable="${basedir}/vendor/bin/phpunit" failonerror="true" description="Run unit app with PHPUnit ">
<arg line="--verbose -c ${basedir}/phpunit.xml.dist" />
</exec>
</target>

0 votes
Sultan Maiyaki
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 8, 2013

Hi Forest,

I guess the issue is due to the fact that the path to the PHPUnit executable you have added is pointing to something else. Check this page for the list of exceutables on your Bamboo server /admin/agent/configureSharedLocalCapabilities.action . If you have one listed for PHPUnit, then check against the one listed when you run the following commands on your server:

which phpunit if you are on unix

where phpunit if you are on windows

The idea is that Bamboo should be able to use the executable at build time

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events