mysql.travis.xml 980 Bytes
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<phpunit bootstrap="../Doctrine/Tests/TestInit.php">
3 4 5
    <php>
        <var name="db_type" value="pdo_mysql"/>
        <var name="db_host" value="localhost" />
6
        <var name="db_username" value="travis" />
7
        <var name="db_password" value="" />
8 9 10 11 12
        <var name="db_name" value="doctrine_tests" />
        <var name="db_port" value="3306"/>

        <var name="tmpdb_type" value="pdo_mysql"/>
        <var name="tmpdb_host" value="localhost" />
13
        <var name="tmpdb_username" value="travis" />
14
        <var name="tmpdb_password" value="" />
15 16 17 18 19
        <var name="tmpdb_port" value="3306"/>
    </php>

    <testsuites>
        <testsuite name="Doctrine DBAL Test Suite">
20
            <directory>../Doctrine/Tests/DBAL</directory>
21 22 23 24 25 26 27 28 29 30 31
        </testsuite>
    </testsuites>
    <groups>
        <exclude>
            <group>performance</group>
            <group>locking_functional</group>
        </exclude>
    </groups>

</phpunit>