NEW Added "phing phpunit" target

This commit is contained in:
Ingo Schommer 2012-11-15 15:45:39 +01:00
parent 04ce08b886
commit e07ae2041a
1 changed files with 14 additions and 0 deletions

View File

@ -119,6 +119,20 @@ Options:
=================================================================
-->
<target name="phpunit"
description="Runs unit tests as defined through phpunix.xml. Requires the 'phpunit' binary.">
<if>
<available file="${basedir}/vendor/bin/phpunit" />
<then>
<property name="phpunit_bin" value="vendor/bin/phpunit" />
</then>
<else>
<property name="phpunit_bin" value="phpunit" />
</else>
</if>
<exec command="${phpunit_bin}" checkreturn="true" passthru="true" />
</target>
<target name="tag" if="basedir"
description="Creates a new git tag in all the nested working copies (optionally pushes the created tag)"
depends="_gitRepositories,_gitBinary">