mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
NEW Added "phing phpunit" target
This commit is contained in:
parent
04ce08b886
commit
e07ae2041a
14
build.xml
14
build.xml
@ -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">
|
||||
|
Loading…
Reference in New Issue
Block a user