sqlite.travis.xml 901 Bytes
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
         xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/schema/9.3.xsd"
4
         colors="true"
Luís Cobucci's avatar
Luís Cobucci committed
5 6 7
         beStrictAboutOutputDuringTests="true"
         beStrictAboutTodoAnnotatedTests="true"
         failOnRisky="true"
8
         failOnWarning="true"
9 10 11 12 13
>
    <php>
        <ini name="error_reporting" value="-1" />
    </php>

14 15
    <testsuites>
        <testsuite name="Doctrine DBAL Test Suite">
16
            <directory>../Doctrine/Tests/DBAL</directory>
17 18
        </testsuite>
    </testsuites>
Luís Cobucci's avatar
Luís Cobucci committed
19

20 21
    <coverage>
        <include>
22
            <directory suffix=".php">../../lib/Doctrine</directory>
23 24
        </include>
    </coverage>
25

26 27 28 29 30 31
    <groups>
        <exclude>
            <group>performance</group>
            <group>locking_functional</group>
        </exclude>
    </groups>
32
</phpunit>