phpunit.travis.xml 907 字节
<?xml version="1.0" encoding="UTF-8"?>

<phpunit bootstrap="../Doctrine/Tests/TestInit.php"
        convertWarningsToExceptions="true"
        convertNoticesToExceptions="true"
        convertErrorsToExceptions="true"
        backupStaticAttributes="false"
        processIsolation="false"
        stopOnFailure="false"
        backupGlobals="false"
        syntaxCheck="false"
        colors="true">

    <logging>
        <log type="coverage-clover" target="../../build/logs/clover.xml"/>
    </logging>

    <testsuites>
        <testsuite name="Doctrine Cache Test Suite">
            <directory>../Doctrine/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist>
            <directory>../../lib/Doctrine/</directory>
        </whitelist>
    </filter>
    
    <groups>
        <exclude>
            <group>performance</group>
        </exclude>
    </groups>
</phpunit>