Fix: bad path
This commit is contained in:
parent
84a6847c06
commit
6de7f627c2
15
build.xml
15
build.xml
@ -7,13 +7,7 @@
|
|||||||
<!-- Create build directories -->
|
<!-- Create build directories -->
|
||||||
<mkdir dir="${basedir}/hudson/doxygen"/>
|
<mkdir dir="${basedir}/hudson/doxygen"/>
|
||||||
<mkdir dir="${basedir}/hudson/logs"/>
|
<mkdir dir="${basedir}/hudson/logs"/>
|
||||||
</target>
|
<mkdir dir="${basedir}/hudson/coverage"/>
|
||||||
|
|
||||||
<!-- Run unit tests and generate junit.xml and clover.xml -->
|
|
||||||
<target name="phpunit">
|
|
||||||
<exec dir="${basedir}" executable="phpunit" failonerror="true">
|
|
||||||
<arg line="--configuration test/phpunit/hudson-phpunit.xml" />
|
|
||||||
</exec>
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- Run pdepend, phpmd, phpcpd, phpcs, phpdoc and phploc in parallel -->
|
<!-- Run pdepend, phpmd, phpcpd, phpcs, phpdoc and phploc in parallel -->
|
||||||
@ -75,5 +69,12 @@
|
|||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<!-- Run unit tests and generate junit.xml and clover.xml -->
|
||||||
|
<target name="phpunit">
|
||||||
|
<exec dir="${basedir}" executable="phpunit" failonerror="true">
|
||||||
|
<arg line="--configuration test/phpunit/hudson-phpunit.xml" />
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="hudson" depends="clean,parallelTasks,phpunit"/>
|
<target name="hudson" depends="clean,parallelTasks,phpunit"/>
|
||||||
</project>
|
</project>
|
||||||
@ -13,11 +13,11 @@
|
|||||||
</testsuite>
|
</testsuite>
|
||||||
|
|
||||||
<logging>
|
<logging>
|
||||||
<log type="coverage-html" target="build/coverage/" title="Dolibarr"
|
<log type="coverage-html" target="../../hudson/coverage/" title="Dolibarr"
|
||||||
charset="UTF-8" yui="true" highlight="true"
|
charset="UTF-8" yui="true" highlight="true"
|
||||||
lowUpperBound="35" highLowerBound="70"/>
|
lowUpperBound="35" highLowerBound="70"/>
|
||||||
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
<log type="coverage-clover" target="../../hudson/logs/clover.xml"/>
|
||||||
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
|
<log type="junit" target="../../hudson/logs/junit.xml" logIncompleteSkipped="false"/>
|
||||||
</logging>
|
</logging>
|
||||||
|
|
||||||
</phpunit>
|
</phpunit>
|
||||||
Loading…
Reference in New Issue
Block a user