phpunit.travis.xml 865 B

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
  4. backupGlobals="false"
  5. colors="true"
  6. bootstrap="../../vendor/autoload.php"
  7. >
  8. <php>
  9. <ini name="error_reporting" value="-1" />
  10. </php>
  11. <logging>
  12. <log type="coverage-clover" target="../../build/logs/clover.xml"/>
  13. </logging>
  14. <testsuites>
  15. <testsuite name="Doctrine Cache Test Suite">
  16. <directory>../Doctrine/</directory>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist>
  21. <directory>../../lib/Doctrine/</directory>
  22. </whitelist>
  23. </filter>
  24. <groups>
  25. <exclude>
  26. <group>performance</group>
  27. </exclude>
  28. </groups>
  29. </phpunit>