mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
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 -->
|
||||
<mkdir dir="${basedir}/hudson/doxygen"/>
|
||||
<mkdir dir="${basedir}/hudson/logs"/>
|
||||
</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>
|
||||
<mkdir dir="${basedir}/hudson/coverage"/>
|
||||
</target>
|
||||
|
||||
<!-- Run pdepend, phpmd, phpcpd, phpcs, phpdoc and phploc in parallel -->
|
||||
|
|
@ -74,6 +68,13 @@
|
|||
<arg value="${basedir}/build/doxygen/hudson-doxygen.doxyfile"/>
|
||||
</exec>
|
||||
</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"/>
|
||||
</project>
|
||||
|
|
@ -13,11 +13,11 @@
|
|||
</testsuite>
|
||||
|
||||
<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"
|
||||
lowUpperBound="35" highLowerBound="70"/>
|
||||
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
||||
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
|
||||
<log type="coverage-clover" target="../../hudson/logs/clover.xml"/>
|
||||
<log type="junit" target="../../hudson/logs/junit.xml" logIncompleteSkipped="false"/>
|
||||
</logging>
|
||||
|
||||
</phpunit>
|
||||
Loading…
Reference in New Issue
Block a user