JENKINS-CI changing phpunit.xml to first stage in jenkins, in this first stage we only check style and basic phpunits

This commit is contained in:
Fernando Ontiveros
2012-10-16 14:45:41 -04:00
parent f5fd2bd544
commit e47528c28a

View File

@@ -7,14 +7,13 @@
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
stopOnFailure="true"
syntaxCheck="true"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="automated">
<directory>./tests/automated/</directory>
<directory>./tests/unit/backend/services/</directory>
</testsuite>
<!--
<testsuite name="unit">
@@ -48,10 +47,6 @@
</php>
<logging>
<log type="coverage-html" target="build/coverage" title="ERC"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="10" highLowerBound="20"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>