2018-05-29 20:25:02 +00:00
|
|
|
<!--suppress PhingDomInspection -->
|
2010-04-18 13:58:43 +00:00
|
|
|
<project name="php-resque" default="build">
|
|
|
|
<target name="clean">
|
|
|
|
<delete dir="${basedir}/build" />
|
|
|
|
</target>
|
|
|
|
<target name="prepare">
|
|
|
|
<mkdir dir="${basedir}/build" />
|
|
|
|
<mkdir dir="${basedir}/build/logs" />
|
|
|
|
</target>
|
|
|
|
<target name="phpunit">
|
2018-05-29 20:25:02 +00:00
|
|
|
<exec dir="${basedir}" executable="phpunit">
|
2010-04-18 13:58:43 +00:00
|
|
|
<arg line="--log-junit ${basedir}/build/logs/phpunit.xml
|
|
|
|
--coverage-clover ${basedir}/build/logs/clover.xml
|
|
|
|
--coverage-html ${basedir}/build/coverage" />
|
|
|
|
</exec>
|
|
|
|
</target>
|
|
|
|
<target name="build" depends="clean,prepare,phpunit" />
|
|
|
|
</project>
|