sqlite.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. beStrictAboutOutputDuringTests="true"
  6. beStrictAboutTodoAnnotatedTests="true"
  7. failOnRisky="true"
  8. >
  9. <php>
  10. <!-- use an in-memory sqlite database -->
  11. <var name="db_driver" value="pdo_sqlite"/>
  12. <var name="db_memory" value="true"/>
  13. <!-- necessary change for some CLI/console output test assertions -->
  14. <env name="COLUMNS" value="120"/>
  15. </php>
  16. <testsuites>
  17. <testsuite name="Doctrine DBAL Test Suite">
  18. <directory>../../../tests</directory>
  19. </testsuite>
  20. </testsuites>
  21. <filter>
  22. <whitelist>
  23. <directory suffix=".php">../../../lib/Doctrine</directory>
  24. </whitelist>
  25. </filter>
  26. <groups>
  27. <exclude>
  28. <group>performance</group>
  29. <group>locking_functional</group>
  30. </exclude>
  31. </groups>
  32. </phpunit>