oci8.phpunit.continuousphp.xml 1.44 KB
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/phpunit.xsd"
4
         colors="true"
5 6 7
         beStrictAboutOutputDuringTests="true"
         beStrictAboutTodoAnnotatedTests="true"
         failOnRisky="true"
8
         failOnWarning="true"
9
         bootstrap="bootstrap.php"
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
>
  <php>
    <ini name="error_reporting" value="-1" />

    <var name="db_type" value="oci8"/>
    <var name="db_host" value="oracle-xe-11" />
    <var name="db_username" value="C##doctrine" />
    <var name="db_password" value="ORACLE" />
    <var name="db_name" value="XE" />
    <var name="db_port" value="1521"/>
    <var name="db_event_subscribers" value="Doctrine\DBAL\Event\Listeners\OracleSessionInit"/>

    <var name="tmpdb_type" value="oci8"/>
    <var name="tmpdb_host" value="oracle-xe-11" />
    <var name="tmpdb_username" value="ORACLE" />
    <var name="tmpdb_password" value="ORACLE" />
    <var name="tmpdb_name" value="XE" />
    <var name="tmpdb_port" value="1521"/>
  </php>

  <testsuites>
    <testsuite name="Doctrine DBAL Test Suite">
32
      <directory>../../tests</directory>
33 34 35
    </testsuite>
  </testsuites>

36 37
  <filter>
    <whitelist>
38
      <directory suffix=".php">../../src</directory>
39 40 41
    </whitelist>
  </filter>

42 43 44 45 46 47 48
  <groups>
    <exclude>
      <group>performance</group>
      <group>locking_functional</group>
    </exclude>
  </groups>
</phpunit>