oci8.phpunit.continuousphp.xml 1.36 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
>
  <php>
    <ini name="error_reporting" value="-1" />

14
    <var name="db_driver" value="oci8"/>
15
    <var name="db_host" value="oracle-xe-11" />
16
    <var name="db_user" value="C##doctrine" />
17
    <var name="db_password" value="ORACLE" />
18
    <var name="db_dbname" value="XE" />
19 20
    <var name="db_event_subscribers" value="Doctrine\DBAL\Event\Listeners\OracleSessionInit"/>

21
    <var name="tmpdb_driver" value="oci8"/>
22
    <var name="tmpdb_host" value="oracle-xe-11" />
23
    <var name="tmpdb_user" value="ORACLE" />
24
    <var name="tmpdb_password" value="ORACLE" />
25
    <var name="tmpdb_dbname" value="XE" />
26 27 28 29
  </php>

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

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

40 41 42 43 44 45 46
  <groups>
    <exclude>
      <group>performance</group>
      <group>locking_functional</group>
    </exclude>
  </groups>
</phpunit>